Skip to content

Instantly share code, notes, and snippets.

@kmdsbng
Created January 21, 2015 01:43
Show Gist options
  • Select an option

  • Save kmdsbng/c9d5b5ffd36e00a79422 to your computer and use it in GitHub Desktop.

Select an option

Save kmdsbng/c9d5b5ffd36e00a79422 to your computer and use it in GitHub Desktop.
class A
CONST_A = 1
@@a = 1
@b = 1
def self.get_a
@@a
end
def self.get_b
@b
end
end
class B < A
CONST_A = 2
@@a = 2
@b = 2
end
A.get_a # => 2
B.get_a # => 2
A::CONST_A # => 1
B::CONST_A # => 2
A.get_b # => 1
B.get_b # => 2
$global_state = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment