llvm-project/lldb/test/Shell/ScriptInterpreter/Lua/Inputs/testmodule.lua

8 lines
90 B
Lua

local mymodule = {}
function mymodule.foo()
print("Hello World!")
end
return mymodule