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

12 lines
215 B
Text

switch v [with fallthrough] do
case 1,2:
-- do something
case 3 then
-- do something
fallthrough
case 4:
-- do something
break
default:
-- do something
end switch