diff --git a/13.nix b/13.nix new file mode 100644 index 0000000..7889d0d --- /dev/null +++ b/13.nix @@ -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 +} \ No newline at end of file