mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
14 lines
158 B
Text
14 lines
158 B
Text
|
|
// switch02
|
||
|
|
//
|
||
|
|
|
||
|
|
var a := 7;
|
||
|
|
case (a)
|
||
|
|
4:
|
||
|
|
print( "four" );
|
||
|
|
5:
|
||
|
|
print( "five" );
|
||
|
|
6:
|
||
|
|
print( "six" );
|
||
|
|
endcase
|
||
|
|
|
||
|
|
print( "done" );
|