InterviewSolution
Saved Bookmarks
| 1. |
What is currying in Haskell? |
|
Answer» In Haskell, currying is a fact where a FUNCTION TAKES n arguments and returns it with a function with n-1 arguments. The fact works when only one ARGUMENT is applied. |
|