9 lines
194 B
Text
9 lines
194 B
Text
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
|