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

16 lines
No EOL
209 B
Text

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