Skip to content

Instantly share code, notes, and snippets.

@duckinator
Created March 27, 2016 06:04
Show Gist options
  • Save duckinator/77bad50007d3165a55b5 to your computer and use it in GitHub Desktop.
Save duckinator/77bad50007d3165a55b5 to your computer and use it in GitHub Desktop.
X = 1
class A
X = 2
end
class A::B
p X # => 1
end
X = 1
class A
X = 2
end
class A
class B
p X # => 2
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment