summaryrefslogtreecommitdiff
path: root/2p14.cpp
blob: d3973a6fb13efeca94abc28ff61bf79e2a20d1c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <iostream>
#include "sales_item.hpp"

/*
 * Yes, it is legal if you aren't using compilerflags like me.
 * 2.14
 *
 *
 */

int main () {
	/*
	int i = 100;
	int sum = 0;
	for(int i = 0 ; i != 10 ; i++) {
		sum += i;
	}

	std::cout << i << " " << sum << std::endl;
	*/
	return 0;
}