Skip to content

Instantly share code, notes, and snippets.

@iranjith4
Created June 23, 2016 06:14
Show Gist options
  • Save iranjith4/556b588d2291d5a24987eff4256a1e25 to your computer and use it in GitHub Desktop.
Save iranjith4/556b588d2291d5a24987eff4256a1e25 to your computer and use it in GitHub Desktop.
local myVariable1 = "SOME_CONSTANT_VALUE"
local myVariable2 = "SOME_CONSTANT_VALUE"
local M = {}
function M.myAwesomeFunction1()
-- Do something here and return the value
end
function M.getMyVariable1()
return myVariable1
end
return M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment