Created
June 23, 2016 06:14
-
-
Save iranjith4/556b588d2291d5a24987eff4256a1e25 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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