Last active
December 29, 2015 01:39
-
-
Save karmiclychee/7594370 to your computer and use it in GitHub Desktop.
lulz
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
class Rubyists | |
def self.do | |
puts yield | |
end | |
end | |
def you(block) | |
block.call | |
end | |
def want(block) | |
block | |
end | |
def some(block) | |
block | |
end | |
def bedtime(block) | |
block | |
end | |
reading = Proc.new do | |
true | |
end | |
Rubyists::do { `ri "==="` if you want some bedtime reading } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
O.M.G. you gave me quite the belly laugh from this, thanks!