--[[ The following below is some starter code that you may use to get started with module writing and testing. ]]-- local p = {} p.main = function(frame) local args = frame.args local out = 'My Test' -- some code here return out end return p