[analyzer][Z3] Restore the original timeout of 15s (#118291)
[llvm-project.git] / lldb / test / Shell / ScriptInterpreter / Lua / Inputs / testmodule.lua
blobfcf4eb05bd2bd2114da9d421b91c1194f5f02345
1 local mymodule = {}
3 function mymodule.foo()
4 print("Hello World!")
5 end
7 return mymodule