8 lines
70 B
Nix
8 lines
70 B
Nix
let
|
|
f = x: x + 1;
|
|
a = 1;
|
|
|
|
in
|
|
# applies f to a
|
|
[ (f a) ]
|