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

10 lines
140 B
Plaintext

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