projet-traduction-langage/fichiersRat/src-rat-tam-test/testwhile1.rat
2021-11-24 14:13:45 +01:00

10 lines
103 B
Plaintext

prog {
int x = 1;
int y = 1;
while (y < 10) {
x = (x + 2);
y = (y + 1);
}
print x;
}