Created
November 26, 2011 19:16
-
-
Save devnoo/1396157 to your computer and use it in GitHub Desktop.
Seven languages in seven weeks : Solutions IO Day 1
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
Person := Object clone | |
Person name := "" | |
Person introduce := method(return "Hi my name is " .. name) | |
lucas := Person clone | |
lucas name = "Lucas" | |
lucas introduce |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment