polserver/testsuite/escript/switch/switch02.src
turleypol fd1dcb6512 switch tests where never executed :(
fixed unaligned load for switch statements
2018-06-03 21:54:16 +02:00

14 lines
No EOL
158 B
Text

// switch02
//
var a := 7;
case (a)
4:
print( "four" );
5:
print( "five" );
6:
print( "six" );
endcase
print( "done" );