Skip to content

Instantly share code, notes, and snippets.

@davidbarral
Last active February 12, 2018 10:40
Show Gist options
  • Save davidbarral/5fa3146636b7fcfd72ae529e47458f6c to your computer and use it in GitHub Desktop.
Save davidbarral/5fa3146636b7fcfd72ae529e47458f6c to your computer and use it in GitHub Desktop.
TDD: curry
expect(sum4(1)(2)(3,4)).toBe(10);
expect(sum4(1)(2)(3)(4)).toBe(10);
expect(sum4(1,2)(3)(4)).toBe(10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment