tour-of-nix/07.nix

9 lines
98 B
Nix

let
f = "f";
o = "o";
func = {a, b, c}: a + b + c;
in
{
foo = func {a=f; b=o; c="o";};
}