Created
August 26, 2014 06:02
-
-
Save pajlada/f1e877ddd2c5356f36a5 to your computer and use it in GitHub Desktop.
lua conversion
This file contains 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
-- 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