You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
Allow for creation of partially applied functions using currying.
f(intx,inty)=x+yg=f(5)# Missing one argument, g becomes a function with the remaining arguments for fg(37)# Finally evaluated to the integer 42 (All arguments passed)
The text was updated successfully, but these errors were encountered:
Allow for creation of partially applied functions using currying.
The text was updated successfully, but these errors were encountered: