Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 26th, 2012  |  syntax: None  |  size: 0.20 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. puts RUBY_VERSION
  2. a = lambda { puts "Wow man" }
  3. a.call('hi') #=> silent ignore
  4.  
  5. b = lambda { |a| puts "hi there" }
  6. b.call("hi",2) #=> warning buddy
  7.  
  8. b = lambda { |a,b| puts "foo" }
  9. b.call("hi") #=> error