Skip to content

Instantly share code, notes, and snippets.

@notch8-old
Forked from etdebruin/rara
Created December 28, 2011 18:31
Show Gist options
  • Save notch8-old/1529050 to your computer and use it in GitHub Desktop.
Save notch8-old/1529050 to your computer and use it in GitHub Desktop.
Working with instance vars issue
module B
def rara
@rara ||= Array.new
end
def rara=(value)
@rara = value
end
end
class A
include B
def show
puts @rara
end
def add
rara.push('hi')
end
end
foo = A.new
foo.add
foo.show
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment