prog8/examples/test.p8
2023-09-23 11:22:33 +02:00

15 lines
204 B
Lua

%import textio
%import floats
main {
sub start() {
float x=10
float y=20
bool r = x!=y
txt.print_ub(r)
repeat 4 {
txt.print(".")
}
}
}