mirror of
https://github.com/irmen/prog8.git
synced 2024-10-31 09:08:02 +00:00
18 lines
226 B
Lua
18 lines
226 B
Lua
%import c64utils
|
|
%import c64flt
|
|
%zeropage basicsafe
|
|
%option enable_floats
|
|
|
|
~ main {
|
|
|
|
sub start() {
|
|
|
|
ubyte[] blaat = 10 to 20
|
|
|
|
for ubyte c in 'a' to 'z' {
|
|
c64.CHROUT(blaat[c])
|
|
}
|
|
}
|
|
|
|
}
|