mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
2ab4bc44c7
* Put common test functions in tests/lang/lib.nix.
8 lines
106 B
Nix
8 lines
106 B
Nix
with import ./lib.nix;
|
|
|
|
let {
|
|
|
|
l = ["1" "2" ["3" ["4"] ["5" "6"]] "7"];
|
|
|
|
body = concat (flatten l);
|
|
}
|