Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,5 @@
|
|||
IF Foo = TRUE THEN
|
||||
Bar();
|
||||
ELSE
|
||||
Baz();
|
||||
END;
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
IF Foo = "foo" THEN
|
||||
Bar();
|
||||
ELSIF Foo = "bar" THEN
|
||||
Baz();
|
||||
ELSIF Foo = "foobar" THEN
|
||||
Quux();
|
||||
ELSE
|
||||
Zeepf();
|
||||
END;
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
CASE Foo OF
|
||||
| 1 => IO.Put("One\n");
|
||||
| 2 => IO.Put("Two\n");
|
||||
| 3 => IO.Put("Three\n");
|
||||
ELSE
|
||||
IO.Put("Something\n");
|
||||
END;
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
TYPECASE ref OF
|
||||
| NULL => IO.Put("Null\n");
|
||||
| CHAR => IO.Put("Char\n");
|
||||
| INTEGER => IO.Put("Integer\n");
|
||||
ELSE
|
||||
IO.Put("Something\n");
|
||||
END;
|
||||
Loading…
Add table
Add a link
Reference in a new issue