Currying: Difference between revisions

143 bytes added ,  11 months ago
Line 1,422:
 
</pre>
 
A shorter form of the above function, also without type specification:
<syntaxhighlight lang="julia">
addN(n) = x -> n + x
</syntaxhighlight>
 
=={{header|Kotlin}}==
1

edit