prog8/examples/test.p8

13 lines
191 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-22 22:47:48 +00:00
float xx = 10.1
ubyte yy= xx==10.1
txt.print_ub(yy)
if xx==10.1
txt.print("equal")
}
}