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