Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1 @@
if a eq 5 then print, "a equals five" [else print, "a is something else"]

View file

@ -0,0 +1,5 @@
if a eq 5 then begin
... some code here ...
endif [else begin
... some other code here ...
endelse]

View file

@ -0,0 +1,5 @@
case <expression> of
(choice-1): <command-1>
[(choice-2): <command-2> [...]]
[else: <command-else>]
endcase

View file

@ -0,0 +1,5 @@
switch <expression> of
(choice-1): <command-1>
[(choice-2): <command-2> [...]]
[else: <command-else>]
endswitch

View file

@ -0,0 +1 @@
on_error label