lunar_wave/lunar_wave_vm/test_vectors/bools.lua

15 lines
189 B
Lua

local function bool_to_x (b)
if b then
return 99
else
return 98
end
end
print (bool_to_x (false))
print (bool_to_x (true))
local x = bool_to_x (not not arg [1])
print (x)
return x