summaryrefslogtreecommitdiffhomepage
path: root/Examples/ExampleCPlusPlus.cxx
blob: b54786d355d961131a1abfb9a9b106eb3a628087 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int main(int argc, char const* argv[])
{
	int foo = 20;
	foo -= 1;

	{
		bool bar = false;
		bar = true;

		bool bar2 = bar;
	}

	return foo;
}