Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
13
Task/Currying/Lambdatalk/currying.lambdatalk
Normal file
13
Task/Currying/Lambdatalk/currying.lambdatalk
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
1) just define function a binary function:
|
||||
{def power {lambda {:a :b} {pow :a :b}}}
|
||||
-> power
|
||||
|
||||
2) and use it:
|
||||
{power 2 8} // power is a function waiting for two numbers
|
||||
-> 256
|
||||
|
||||
{{power 2} 8} // {power 2} is a function waiting for the missing number
|
||||
-> 256
|
||||
|
||||
{S.map {power 2} {S.serie 1 10}} // S.map applies the {power 2} unary function
|
||||
-> 2 4 8 16 32 64 128 256 512 1024 // to a sequence of numbers from 1 to 10
|
||||
Loading…
Add table
Add a link
Reference in a new issue