nix-pills/pills/05/test-nix-2.txt
Matan Bendix Shenhav 4f72955417 Wrote up pill 5.
2017-08-13 13:16:21 +03:00

7 lines
No EOL
198 B
Text

{ a, b ? 3, trueMsg ? "yes", falseMsg ? "no" }:
if a > b
then builtins.trace trueMsg true
else builtins.trace falseMsg false
nix-repl> import ./test.nix { a = 5; trueMsg = "ok"; }
trace: ok
true