9 lines
80 B
Text
9 lines
80 B
Text
addN := {
|
|
takes '[n].
|
|
{
|
|
$1 + n.
|
|
}.
|
|
}.
|
|
|
|
add3 := addN 3.
|
|
add3 (4). ;; 7
|