--module.lua
module = {}
module.num = 13
module.f1 = function (a,b) return a + bend
--test.lua
require('module')
print(module.f1(5,6)) --11