mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
13 lines
175 B
Lua
13 lines
175 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
if true {
|
|
txt.print("true")
|
|
} else {
|
|
txt.print("false")
|
|
}
|
|
}
|
|
}
|