Initial data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 72d218235f
commit f23f22d71c
199087 changed files with 3378941 additions and 0 deletions

View file

@ -0,0 +1,7 @@
while condition1 do
while condition2 do
if condition3 then
quitloop(2);
endif;
endwhile;
endwhile;

View file

@ -0,0 +1,8 @@
while condition1 do
while condition2 do
if condition3 then
goto l;
endif;
endwhile;
endwhile;
l:;

View file

@ -0,0 +1,16 @@
state1:
DO_SOMETHING();
if condition1 then
goto state1;
elseif condition2 then
goto state2;
....
else
goto stateN;
endif;
state2:
....
...
...
stateN:
....

View file

@ -0,0 +1,10 @@
define outer();
define inner(n);
if n = 0 then
goto final;
endif;
inner(n - 1);
enddefine;
inner(5);
final:;
enddefine;

View file

@ -0,0 +1 @@
go_on expression to lab1, lab2, ..., labN else elselab ;

View file

@ -0,0 +1 @@
return;

View file

@ -0,0 +1 @@
return(val1, val2, val3);

View file

@ -0,0 +1 @@
chain proc2(x1, x2, x3);