Last active
September 8, 2019 18:39
-
-
Save pfftdammitchris/d83ac436d7e6c20635b516dc9cf31d8a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
function prepareCooking(cook) { | |
return function(egg1) { | |
return function(egg2) { | |
return function(egg3) { | |
// HERE | |
return function(egg4) { | |
return cook(egg1, egg2, egg3, egg4) | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment