summaryrefslogtreecommitdiff
path: root/2p13.cpp
blob: b0e3bf0c99843516709ec3cf4402c792a071f5e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>

/*
 * 2.13
 * Program does not compile using as many flags as i do. Which is probably a really good idea though.
 * 
 *
 */

int gi = 42;
int main () {

	int i = 100;
	int j = i;
	std::cout << gi << " " << i << " " << j << std::endl;
	return 0;
}