Skip to content

Instantly share code, notes, and snippets.

@simonask
Created February 10, 2009 13:00
Show Gist options
  • Save simonask/61375 to your computer and use it in GitHub Desktop.
Save simonask/61375 to your computer and use it in GitHub Desktop.
SomeClass: class() {
.initialize: { ... }
}
foo: SomeClass()
bar: SomeClass()
foo.lol: { print "HELLO" }
bar.lol() // => ERROR
foo.lol() // => "HELLO"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment