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

10 lines
93 B
Plaintext

prog {
int x = 1;
int y = 1;
if (x = y) {
print 18;
} else {
print 21;
}
}