I’ve seen some module scripts that use module: or module. to define their functions, is there any difference between the two? Does it matter which should be used?
Example:
module = {}
function module:test()
-- Or
function module.testing()
return module