mirror of
https://github.com/NixOS/nix.git
synced 2025-02-19 18:32:36 +00:00
9 lines
106 B
Nix
9 lines
106 B
Nix
with import ./lib.nix;
|
|
|
|
let {
|
|
|
|
l = ["1" "2" ["3" ["4"] ["5" "6"]] "7"];
|
|
|
|
body = concat (flatten l);
|
|
}
|