mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 12:00:25 +00:00
10 lines
106 B
Plaintext
10 lines
106 B
Plaintext
var _x = 3;
|
|
|
|
switch _x {
|
|
case 1:
|
|
case 2:
|
|
somefunc(2);
|
|
default:
|
|
somefunc(3);
|
|
}
|