RosettaCodeData/Task/Conditional-structures/Phix/conditional-structures-1.phix

10 lines
140 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
if name="Pete" then
-- do something
elsif age>50 then
-- do something
elsif age<20 then
-- do something
else
-- do something
end if