Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,23 @@
|
|||
if condition then
|
||||
statement
|
||||
end if;
|
||||
|
||||
if condition then
|
||||
statement1
|
||||
else
|
||||
statement2;
|
||||
end if;
|
||||
|
||||
if condition1 then
|
||||
statement1
|
||||
elsif condition2 then
|
||||
statement2;
|
||||
end if;
|
||||
|
||||
if condition1 then
|
||||
statement1
|
||||
elsif condition2 then
|
||||
statement2;
|
||||
else
|
||||
statement3;
|
||||
end if;
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
case i of
|
||||
when {1, 4, 9}: # Executed if i is 1, 4 or 9
|
||||
statement1;
|
||||
when {11} | {13 .. 17}: # Executed if i is 11, 13, 14, 15, 16 or 17
|
||||
statement2;
|
||||
when {42}: # Executed only if i is 42
|
||||
statement3;
|
||||
otherwise:
|
||||
statement4;
|
||||
end case;
|
||||
Loading…
Add table
Add a link
Reference in a new issue