polserver/testsuite/escript/compiler2/compiler2-035-while-is-false.src
2020-08-13 15:26:09 +02:00

6 lines
No EOL
108 B
Text

var a := 0;
while (a)
print("incorrect - should not be taken");
endwhile
print("correct - exits loop");