aboutsummaryrefslogtreecommitdiff
path: root/res/test_add.tpc
blob: 848130c091a934e8bc3d0d76a020382dc7eb75f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
entier a;

entier main(void)  {
	entier a,b,res;
	a = 2;
	b = 3;
	res = a + b;
	print(res);
	res = a - b;
	print(res);
}