mirror of
https://github.com/Kugelschieber/asl.git
synced 2026-01-18 03:50:25 +00:00
9 lines
95 B
Plaintext
9 lines
95 B
Plaintext
switch x {
|
|
case 1:
|
|
x = 1;
|
|
case 2:
|
|
x = 2;
|
|
default:
|
|
x = 3;
|
|
}
|