prog8/examples/test.p8
Irmen de Jong c70bbdab26 fixed missing type checking in vardecl initializer values. Fixes #29
Also fix wrong assert of 0 const check in assembly gen for if-statement comparisons.
2021-04-18 22:46:21 +02:00

15 lines
198 B
Lua

%import textio
%zeropage basicsafe
%import test_stack
main {
sub start() {
ubyte xx=99
if 0==xx {
txt.print("fout")
}
txt.print("loading ")
}
}