Skip to content

Instantly share code, notes, and snippets.

@enebo

enebo/cls6.rb Secret

Last active March 30, 2021 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enebo/e9aa7ba201c742fe64d04447e0cca7bb to your computer and use it in GitHub Desktop.
Save enebo/e9aa7ba201c742fe64d04447e0cca7bb to your computer and use it in GitHub Desktop.
module A
def g
@@a
end
def a
@@a = 1
end
end
class B
include A
def b
@@a = 2
end
end
b = B.new
p b.a
p b.g
p b.b
p b.g
p A.class_variables
p B.class_variables
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment