Skip to content

Instantly share code, notes, and snippets.

@tomekc
Created December 4, 2015 00:02
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 tomekc/44766703bea3af3c8524 to your computer and use it in GitHub Desktop.
Save tomekc/44766703bea3af3c8524 to your computer and use it in GitHub Desktop.
Creating modules in Corona SDK
local M = {}
function M.create()
-- initialize members: M.foo = "bar"
end
function M.foo()
end
return M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment