Add 13.nix

This commit is contained in:
NaiJi ✨ 2022-04-13 13:04:04 +00:00
parent c7a7329955
commit 86344ab19b
1 changed files with 8 additions and 0 deletions

8
13.nix Normal file
View File

@ -0,0 +1,8 @@
let
arguments = {a="Happy"; b="Awesome";};
func = {a, b}: {d, b, c}: a+b+c+d;
in
{
A = func arguments {c="Are"; b="Functions"; d="Called";}; #only modify this line
}