mirror of
https://github.com/irmen/prog8.git
synced 2024-11-23 07:32:10 +00:00
13 lines
166 B
Lua
13 lines
166 B
Lua
%zeropage basicsafe
|
|
%import textio
|
|
|
|
main {
|
|
sub start() {
|
|
str name="irmen"
|
|
if name=="." {
|
|
cx16.r0++
|
|
}
|
|
txt.nl()
|
|
}
|
|
}
|