mirror of
https://github.com/irmen/prog8.git
synced 2025-02-18 05:30:34 +00:00
11 lines
155 B
Lua
11 lines
155 B
Lua
%import textio
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
bool bb2=true
|
|
bool @shared bb = bb2 and true
|
|
txt.print_ub(bb)
|
|
}
|
|
}
|