7 lines
121 B
Text
7 lines
121 B
Text
CASE Foo OF
|
|
| 1 => IO.Put("One\n");
|
|
| 2 => IO.Put("Two\n");
|
|
| 3 => IO.Put("Three\n");
|
|
ELSE
|
|
IO.Put("Something\n");
|
|
END;
|