Last active
February 12, 2018 10:40
-
-
Save davidbarral/5fa3146636b7fcfd72ae529e47458f6c to your computer and use it in GitHub Desktop.
TDD: curry
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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