Created
January 30, 2010 19:48
-
-
Save ku1ik/290693 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module A | |
class B | |
def run | |
connect do | |
puts C | |
end | |
end | |
def connect | |
yield | |
end | |
end | |
class C | |
end | |
end | |
A::B.new.run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment