Skip to content

Instantly share code, notes, and snippets.

@benlovell
Created May 8, 2015 08:45
Show Gist options
  • Save benlovell/3bb402c8ae7c880ba7c2 to your computer and use it in GitHub Desktop.
Save benlovell/3bb402c8ae7c880ba7c2 to your computer and use it in GitHub Desktop.
class Wut
def initialize
@proc = Proc.new
end
def call_it
@proc.call
end
end
lol = Wut.new { puts 'lolwut' }
lol.call_it
# lolwut
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment