polserver/testsuite/escript/while/while02.src

7 lines
88 B
Text
Raw Permalink Normal View History

var cont := 4;
while ( cont )
print( "cont: " + cont );
cont := cont - 1;
endwhile