elna/tests/vm/printi_if_not_compound.elna

10 lines
106 B
Plaintext
Raw Normal View History

2024-10-13 12:59:47 +02:00
proc main() {
if (1 # 2) {
printi(3);
printi(7);
} else {
printi(5);
printi(9);
}
}