mirror of
https://github.com/irmen/prog8.git
synced 2024-11-04 04:05:00 +00:00
23 lines
290 B
Lua
23 lines
290 B
Lua
%import syslib
|
|
; %import graphics
|
|
%import textio
|
|
%import floats
|
|
%zeropage basicsafe
|
|
|
|
|
|
main {
|
|
|
|
sub start() {
|
|
|
|
byte bb= -22
|
|
ubyte ubb = 22
|
|
word ww= -2222
|
|
uword uww = 2222
|
|
float ff = -2.2
|
|
|
|
|
|
; @($c000) *= 99 ; TODO implement
|
|
|
|
}
|
|
}
|