mirror of
https://github.com/irmen/prog8.git
synced 2025-01-13 10:29:52 +00:00
14 lines
203 B
Lua
14 lines
203 B
Lua
%import textio
|
|
%import floats
|
|
%zeropage basicsafe
|
|
%option no_sysinit
|
|
|
|
main {
|
|
sub start() {
|
|
float[] fa = [1.1, 2.2, 3.3]
|
|
float @shared fl = 2.2
|
|
|
|
txt.print_ub(fl in fa)
|
|
}
|
|
}
|