aboutsummaryrefslogtreecommitdiff
path: root/res/test_while_ok.tpc
blob: 25d04c68dd401ddc6f16fa300b6c944212d557ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* test-table-symboles.tpc */

/* Test file for simplified translator of a declaration of variables in C */

entier main(void)  {
	entier i;
	i = 0;
	while(i<=5){
		print(i);
		i = i + 1;
	}
	return 0;
}