Files
nix-js/fix/tests/tests/lang/eval-okay-flatten.nix
2026-03-14 10:28:43 +08:00

21 lines
176 B
Nix

with import ./lib.nix;
let {
l = [
"1"
"2"
[
"3"
[ "4" ]
[
"5"
"6"
]
]
"7"
];
body = concat (flatten l);
}