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

10 lines
194 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
constant DEBUG=false
if DEBUG then
puts(1,"debug is on\n")
end if
if platform()=WINDOWS then
puts(1,"this is windows\n")
elsif platform()=LINUX then
puts(1,"this is linux\n")
end if