prog8/examples/test.p8

11 lines
155 B
Plaintext
Raw Normal View History

%import textio
%zeropage basicsafe
2022-03-13 11:52:12 +00:00
main {
sub start() {
bool bb2=true
bool @shared bb = bb2 and true
txt.print_ub(bb)
}
2022-02-17 23:40:31 +00:00
}