polserver/testsuite/escript/compiler2/compiler2-048-case-integer-simple.src
2020-08-13 15:26:09 +02:00

8 lines
No EOL
107 B
Text

var a := 5;
case (a)
4:
print( "four" );
5:
print( "five" );
endcase
print("done");