RosettaCodeData/Task/Conditional-structures/Seed7/conditional-structures-1.seed7
2023-07-01 13:44:08 -04: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;