prog8/examples/test.p8

27 lines
383 B
Plaintext
Raw Normal View History

%import test_stack
%import textio
2020-12-27 23:08:22 +00:00
%import floats
%zeropage basicsafe
2020-12-08 00:02:38 +00:00
%option no_sysinit
main {
sub start () {
2020-12-27 23:08:22 +00:00
word ww
float y_f
float fl
2020-12-27 23:08:22 +00:00
for ww in -300 to 300 { ; TODO fix crash if ww is not defined
fl = ww as float
floats.print_f(fl)
txt.chrout(' ')
}
test_stack.test()
}
2020-12-26 00:25:52 +00:00
2020-08-27 17:47:50 +00:00
}