Created
October 11, 2016 16:41
-
-
Save aleandros/51c94131d8d7d4c86302f5d5974db4b6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| obj = Object.new | |
| # We create a method ONLY for obj | |
| class << obj | |
| def to_proc | |
| proc { puts 'This looks like fun' } | |
| end | |
| end | |
| not_much &obj | |
| #=> It prints | |
| # This looks like fun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment