mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 15:33:02 +00:00
23 lines
386 B
Lua
23 lines
386 B
Lua
%import textio
|
|
%import floats
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
word @shared x1 = -118
|
|
floats.print(x1 as float)
|
|
txt.nl()
|
|
floats.print(x1 as float/1.9)
|
|
txt.nl()
|
|
xf1 = x1/1.9
|
|
floats.print(xf1)
|
|
txt.nl()
|
|
|
|
float @shared xf1 = -118
|
|
floats.print(xf1/1.9)
|
|
txt.nl()
|
|
}
|
|
}
|
|
|