xref
: /
llvm-project
/
lldb
/
test
/
Shell
/
ScriptInterpreter
/
Lua
/
Inputs
/
testmodule.lua
(revision 572b9f468ad6844795fec29a7e671ba64d82e8c2)
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