prog8/examples/test.p8

18 lines
246 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
2022-03-13 11:52:12 +00:00
2022-06-08 19:05:03 +00:00
main {
2022-07-04 21:42:49 +00:00
sub noCollision(ubyte xpos, ubyte ypos) -> bool {
if xpos
return false
else
return true
2022-06-29 20:19:44 +00:00
}
sub start() {
bool z=noCollision(1,2)
}
2022-02-17 23:40:31 +00:00
}