Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,7 @@
|
|||
while condition1 do
|
||||
while condition2 do
|
||||
if condition3 then
|
||||
quitloop(2);
|
||||
endif;
|
||||
endwhile;
|
||||
endwhile;
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
while condition1 do
|
||||
while condition2 do
|
||||
if condition3 then
|
||||
goto l;
|
||||
endif;
|
||||
endwhile;
|
||||
endwhile;
|
||||
l:;
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
state1:
|
||||
DO_SOMETHING();
|
||||
if condition1 then
|
||||
goto state1;
|
||||
elseif condition2 then
|
||||
goto state2;
|
||||
....
|
||||
else
|
||||
goto stateN;
|
||||
endif;
|
||||
state2:
|
||||
....
|
||||
...
|
||||
...
|
||||
stateN:
|
||||
....
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
define outer();
|
||||
define inner(n);
|
||||
if n = 0 then
|
||||
goto final;
|
||||
endif;
|
||||
inner(n - 1);
|
||||
enddefine;
|
||||
inner(5);
|
||||
final:;
|
||||
enddefine;
|
||||
|
|
@ -0,0 +1 @@
|
|||
go_on expression to lab1, lab2, ..., labN else elselab ;
|
||||
|
|
@ -0,0 +1 @@
|
|||
return;
|
||||
|
|
@ -0,0 +1 @@
|
|||
return(val1, val2, val3);
|
||||
|
|
@ -0,0 +1 @@
|
|||
chain proc2(x1, x2, x3);
|
||||
Loading…
Add table
Add a link
Reference in a new issue