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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
90 B
Lua
Raw Normal View History

2020-01-10 10:21:15 -08:00
local mymodule = {}
function mymodule.foo()
print("Hello World!")
end
return mymodule