mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
12 lines
154 B
Text
12 lines
154 B
Text
// switch11
|
|
//
|
|
|
|
function foo( p )
|
|
case (p)
|
|
4: return "four";
|
|
default:
|
|
endcase
|
|
endfunction
|
|
|
|
print( foo( 1 ) );
|
|
print( foo( 4 ) );
|