You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/tests/comptests/inputs/09_call.lua

5 lines
126 B

function g() return 4.2 end
f = compiler.load('return g()')
assert(f and type(f) == 'function')
local a = f()
assert(a == 4.2)