1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

* Test for `nix-instantiate --eval-only --xml'.

This commit is contained in:
Eelco Dolstra 2006-08-17 11:28:29 +00:00
parent 24e234a2fa
commit 4874fd2d9a
4 changed files with 68 additions and 1 deletions

View file

@ -0,0 +1,13 @@
rec {
x = 123;
a = "foo";
b = "bar";
c = "foo" + "bar";
f = {z, x : ["a" "b" ("c" + "d")], y : [true false]}: if y then x else z;
}