summaryrefslogtreecommitdiffstats
path: root/modules/mymod.lua
blob: 1f5de06ff727dbcb313f1017e11e7b16efa482b0 (plain)
1
2
3
4
5
6
7
local mymod = {}

function mymod.myfunc(arg1, arg2)
	return "hello from mymod.myfunc. arg1 is '"..tostring(arg1).."' and arg2 is '"..tostring(arg2).."'"
end

return mymod