FlagVM/flagpole/tests/ifs.fp

13 lines
279 B
GLSL

$inc fvmstd.fp
proc main
"Delete System32?" :puts :newline
"(y/n)" :puts :newline
:getchar @c
if &c 0x79 == then
"It appears to have failed, are you on linux?" :puts :newline
endif
if &c 0x6E == then
"Alright, have a nice day" :puts :newline
endif
endproc