Skip to content

Instantly share code, notes, and snippets.

@gnufied
Created October 25, 2011 09:22
Show Gist options
  • Save gnufied/1312001 to your computer and use it in GitHub Desktop.
Save gnufied/1312001 to your computer and use it in GitHub Desktop.
puts RUBY_VERSION
a = lambda { puts "Wow man" }
a.call('hi') #=> silent ignore
b = lambda { |a| puts "hi there" }
b.call("hi",2) #=> warning buddy
b = lambda { |a,b| puts "foo" }
b.call("hi") #=> error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment