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/ravi-tests/ravi_testasmvm.lua

21 lines
241 B

local tests = {}
tests.RETURN = function()
return
end
tests.LOADK = function()
return 1, 4.2, 'hello'
end
tests.MOVE = function(a, b)
local c,d = a,b
return c,d
end
for k,v in pairs(tests) do
print(k)
ravi.dumplua(v)
--v()
end