gonix
/
tests
/
functional2
/
lang
/
scope
/
in-5.nix
1
2
3
4
5
6
7
let
x
=
"a"
;
y
=
"b"
;
f
=
{
x
?
y
,
y
?
x
}:
x
+
y
;
in
f
{}