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

local mymodule = {}

function mymodule.foo()
  print("Hello World!")
end

return mymodule