polserver/testsuite/escript/while/while01.src

7 lines
81 B
Text
Raw Permalink Normal View History

var cont := 2;
while ( cont )
print( "cont: " + cont );
cont := 0;
endwhile