polserver/testsuite/escript/switch/switch05.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
240 B
Text

// switch02
//
var a := "hello world";
case (a)
"abc":
print( "first" );
"hello":
print( "second" );
"def":
print( "third" );
default:
print( "none of the above" );
endcase
print( "done" );