Skip to content

Instantly share code, notes, and snippets.

@devnoo
Created November 26, 2011 19:16
Show Gist options
  • Save devnoo/1396157 to your computer and use it in GitHub Desktop.
Save devnoo/1396157 to your computer and use it in GitHub Desktop.
Seven languages in seven weeks : Solutions IO Day 1
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