prog8/examples/test.p8
2023-08-16 14:47:20 +02:00

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)
}
}