projet-traduction-langage/fichiersRat/src-rat-tam-test/testwhile1.rat

10 lines
103 B
Plaintext
Raw Normal View History

2021-11-24 13:13:45 +00:00
prog {
int x = 1;
int y = 1;
while (y < 10) {
x = (x + 2);
y = (y + 1);
}
print x;
}