xref
: /
llvm-project-15.0.7
/
lldb
/
test
/
Shell
/
ScriptInterpreter
/
Lua
/
Inputs
/
testmodule.lua
(revision c515b652)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
local
mymodule
= {}
2
3
function
mymodule
.
foo
()
4
print
(
"Hello World!"
)
5
end
6
7
return
mymodule
8