Skip to content

Instantly share code, notes, and snippets.

@videlais
Created April 13, 2018 03:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save videlais/d3f15bcf94d4d95c84b6ca32bfd83664 to your computer and use it in GitHub Desktop.
Save videlais/d3f15bcf94d4d95c84b6ca32bfd83664 to your computer and use it in GitHub Desktop.
module.lua
local module = {}
local function printText()
print('And this text!')
end
function module.printText()
print('This text!')
printText()
end
return module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment