xref: /llvm-project/lldb/test/Shell/ScriptInterpreter/Lua/Inputs/testmodule.lua (revision 572b9f468ad6844795fec29a7e671ba64d82e8c2)
1local mymodule = {}
2
3function mymodule.foo()
4  print("Hello World!")
5end
6
7return mymodule
8