projet-traduction-langage/fichiersRat/src-rat-type-test/test2.rat

10 lines
124 B
Plaintext
Raw Normal View History

2021-11-24 13:13:45 +00:00
int plus1 (int a int b){
int c = 1;
return (a+(b+c));
}
fonction{
int x = 3;
int y = 4;
print call plus1 (x y);
}