Ruby - Functional Patterns in Ruby
Find the mistake in this Ruby code snippet:
sum = ->(a, b, c) { a + b + c }
curried_sum = sum.curry
partial = curried_sum.call(1, 2)
puts partial.call()