polserver/testsuite/escript/while/while03.src

8 lines
97 B
Text
Raw Permalink Normal View History

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