mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
16 lines
No EOL
209 B
Text
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" ); |