aboutsummaryrefslogtreecommitdiff
path: root/res/test_global.tpc
blob: 8fda248fa5139b727e4d85a15194480eceb8f451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
entier r1,b,s,c,r2 ;
caractere letter, digit, punct; 
entier i;


void calcul(void) {
  r1=12;
  r2=13;
  s = 3;

  b = r1 + r2 + s;
  print(b);
}


entier main(void)  {
	calcul();
}