No matches.
Import-resolving Nix IR plugin
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
# Test basic list support
let
x = [1 2 3];
y = [4 5 6];
z = x ++ y; # List concatenation
in {
inherit x y z;
}