mirror of
https://github.com/irmen/prog8.git
synced 2025-01-12 19:29:50 +00:00
16 lines
225 B
Lua
16 lines
225 B
Lua
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
bool @split bb
|
|
ubyte @split bt
|
|
byte[200] @split ba
|
|
float @split fl
|
|
float[10] @split fla
|
|
|
|
bb=true
|
|
bt++
|
|
fl++
|
|
}
|
|
}
|