Files
lix/tests/functional2/lang/let/in.nix
T
piegames 5bbd2946fa tests/functional2/lang: Migrate let tests
Change-Id: Ia3fc85dafbfd706d719f1766544f836df23ef7c9
2025-11-17 22:10:11 +00:00

15 lines
140 B
Nix

let
f = z:
let
x = "foo";
y = "bar";
body = 1; # compat test
in
z + x + y;
arg = "xyzzy";
in f arg