mirror of
https://github.com/irmen/prog8.git
synced 2025-02-16 22:30:46 +00:00
13 lines
191 B
Lua
13 lines
191 B
Lua
%import textio
|
|
%import floats
|
|
|
|
main {
|
|
sub start() {
|
|
float xx = 10.1
|
|
ubyte yy= xx==10.1
|
|
txt.print_ub(yy)
|
|
if xx==10.1
|
|
txt.print("equal")
|
|
}
|
|
}
|