Skip to content

Instantly share code, notes, and snippets.

@karmiclychee
Last active December 29, 2015 01:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karmiclychee/7594370 to your computer and use it in GitHub Desktop.
Save karmiclychee/7594370 to your computer and use it in GitHub Desktop.
lulz
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 }
@ivanoats
Copy link

O.M.G. you gave me quite the belly laugh from this, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment