polserver/testsuite/escript/while/while09.src

11 lines
145 B
Text
Raw Permalink Normal View History

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