10 lines
94 B
Nix
10 lines
94 B
Nix
with import ./lib.nix;
|
|
|
|
concat (
|
|
map (x: x + "bar") [
|
|
"foo"
|
|
"bla"
|
|
"xyzzy"
|
|
]
|
|
)
|