Skip to content

Instantly share code, notes, and snippets.

@ELLIOTTCABLE
Created July 22, 2008 02:37
Size := Object clone
large := Size new
medium := Size new
small := Size new
Colour := Object clone
black := Colour new
brown := Colour new
white := Colour new
Dog := Object clone do(
size := medium
color := brown
bark := method(
"arf! arf!" println
)
)
tucker := Dog clone do(
size = small
bark = method("ah! ah!" println)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment