polserver/testsuite/escript/while/while07.src

10 lines
129 B
Text
Raw Permalink Normal View History

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