mirror of
https://github.com/NixOS/nix-pills
synced 2024-11-14 23:57:10 +00:00
7 lines
198 B
Text
7 lines
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
|