summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/scenarios/test.txt
blob: 0693994e7fd7e60ba1af33e1e3b398963e9e5ca3 (plain)
1
2
3
4
5
6
7
8
extern public void x()
{
    float a= 1, b = 2;
    a = b * ( 2 + 2 );
	print (a);
	a += 4;
	print (a);
}