mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
14 lines
187 B
Text
14 lines
187 B
Text
|
|
var x;
|
||
|
|
case (x)
|
||
|
|
7:
|
||
|
|
print("first");
|
||
|
|
7:
|
||
|
|
print("second");
|
||
|
|
endcase
|
||
|
|
|
||
|
|
// The OG compiler does not detect the above as an error.
|
||
|
|
function foo()
|
||
|
|
a;
|
||
|
|
endfunction
|
||
|
|
foo();
|