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

10 lines
93 B
Plaintext
Raw Normal View History

2021-11-24 13:13:45 +00:00
prog {
int x = 1;
int y = 2;
if (x = y) {
print 18;
} else {
print 21;
}
}