RosettaCodeData/Task/Conditional-structures/Seed7/conditional-structures-1.seed7
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

23 lines
270 B
Text

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;