Skip to content

Instantly share code, notes, and snippets.

@drogus
Created June 23, 2010 14:21
Show Gist options
  • Save drogus/449981 to your computer and use it in GitHub Desktop.
Save drogus/449981 to your computer and use it in GitHub Desktop.
class Foo
def words
@words ||= 'something something something... '
end
end
class Bar < Foo
def words
@words ||= super + 'dark side!'
end
end
p Bar.new.words
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment