mirror of
https://github.com/irmen/prog8.git
synced 2025-01-13 10:29:52 +00:00
12 lines
177 B
Lua
12 lines
177 B
Lua
%import textio
|
|
%import string
|
|
%import floats
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
float fl = floats.parse_f("-123.45678e20")
|
|
floats.print_f(fl)
|
|
}
|
|
}
|