RosettaCodeData/Task/Conditional-structures/Phix/conditional-structures-1.phix
2017-09-25 22:28:19 +02:00

9 lines
140 B
Text

if name="Pete" then
-- do something
elsif age>50 then
-- do something
elsif age<20 then
-- do something
else
-- do something
end if