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

9 lines
128 B
Plaintext

nix-repl> mul = a: b: a*b
nix-repl> mul
«lambda»
nix-repl> mul 3
«lambda»
nix-repl> mul 3 4
12
nix-repl> mul (6+7) (8+9)
221