mirror of
https://github.com/irmen/prog8.git
synced 2024-11-26 11:49:22 +00:00
17 lines
269 B
Lua
17 lines
269 B
Lua
%import textio
|
|
%import floats
|
|
%zeropage basicsafe
|
|
|
|
main {
|
|
sub start() {
|
|
float fl = 5.23
|
|
fl = floats.ceil(fl)
|
|
floats.print(fl)
|
|
txt.nl()
|
|
fl = 5.23
|
|
fl = floats.floor(fl)
|
|
floats.print(fl)
|
|
txt.nl()
|
|
}
|
|
}
|