1local mymodule = {}
2
3function mymodule.foo()
4  print("Hello World!")
5end
6
7return mymodule
8