1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-20 04:10:12 -04:00
nix-pills/pills/05/named-set-argument.txt
Matan Bendix Shenhav 4f72955417 Wrote up pill 5.
2017-08-13 13:16:21 +03:00

3 lines
82 B
Plaintext

nix-repl> mul = s@{ a, b, ... }: a*b*s.c
nix-repl> mul { a = 3; b = 4; c = 2; }
24