Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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
Advertisement
Add Comment
Please, Sign In to add comment