Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
if a eq 5 then print, "a equals five" [else print, "a is something else"]
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
if a eq 5 then begin
|
||||
... some code here ...
|
||||
endif [else begin
|
||||
... some other code here ...
|
||||
endelse]
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
case <expression> of
|
||||
(choice-1): <command-1>
|
||||
[(choice-2): <command-2> [...]]
|
||||
[else: <command-else>]
|
||||
endcase
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
switch <expression> of
|
||||
(choice-1): <command-1>
|
||||
[(choice-2): <command-2> [...]]
|
||||
[else: <command-else>]
|
||||
endswitch
|
||||
|
|
@ -0,0 +1 @@
|
|||
on_error label
|
||||
Loading…
Add table
Add a link
Reference in a new issue