prog8/examples/test.p8
2023-07-15 22:19:48 +02:00

18 lines
191 B
Lua

%import textio
%zeropage basicsafe
main
{
sub start()
{
ubyte a=1
ubyte b=2
ubyte c=3
ubyte d=4
ubyte xx = (a*b)+(c*d)
xx++
}
}