prog8/examples/test.p8

14 lines
218 B
Plaintext
Raw Normal View History

%import textio
%import floats
%zeropage basicsafe
2022-03-13 12:52:12 +01:00
2022-06-08 21:05:03 +02:00
main {
sub start() {
float fl
fl = -3.14
floats.print_f(abs(fl)) ; WHY IS THIS GETTING A BOOLEAN CAST???
txt.nl()
}
2022-02-18 00:40:31 +01:00
}