Skip to content

Instantly share code, notes, and snippets.

@pajlada
Created August 26, 2014 06: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 pajlada/f1e877ddd2c5356f36a5 to your computer and use it in GitHub Desktop.
Save pajlada/f1e877ddd2c5356f36a5 to your computer and use it in GitHub Desktop.
lua conversion
-- old code:
if this:first_run() then
-- do A
end
-- do B
-- new code:
function init()
-- do A
end
function step()
-- do B
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment