prog8/examples/test.p8

15 lines
204 B
Plaintext
Raw Normal View History

%import textio
2023-09-22 22:47:48 +00:00
%import floats
main {
2023-09-18 22:08:17 +00:00
sub start() {
2023-09-23 09:20:34 +00:00
float x=10
float y=20
bool r = x!=y
txt.print_ub(r)
repeat 4 {
txt.print(".")
}
}
}