polserver/testsuite/escript/while/while06.src

10 lines
126 B
Text
Raw Permalink Normal View History

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