Currying: Difference between revisions

509 bytes added ,  3 months ago
m
(→‎{{header|Nemerle}}: Added MiniScript)
 
(2 intermediate revisions by 2 users not shown)
Line 464:
bc
bcde</pre>
 
=={{header|Binary Lambda Calculus}}==
 
In BLC, all multi argument functions are necessarily achieved by currying, since lambda calculus functions (lambdas) are single argument. A good example is the Church numeral 2, which given a function f and an argument x, applies f twice on x: C2 = \f. (\x. f (f x)). This is written in BLC as
 
<pre>00 00 01 110 01 110 01</pre>
 
where 00 denotes lambda, 01 denotes application, and 1^n0 denotes the variable bound by the n'th enclosing lambda. Which is all there is to BCL!
 
=={{header|BQN}}==
Line 2,471 ⟶ 2,479:
=={{header|Wren}}==
{{trans|Rust}}
<syntaxhighlight lang="ecmascriptwren">var addN = Fn.new { |n| Fn.new { |x| n + x } }
 
var adder = addN.call(40)
56

edits