brewery
notashelf /
b319ef6f3f9fc1123b7cd9c1f5df414e163d674c

nixir

public

Import-resolving Nix IR plugin

Star0tarball
clone
ssh://git@git.notashelf.dev:33/notashelf/nixir.git
tests/fixtures/list_simple.nixNix8 lines119 B
1
# Test basic list support
2
let
3
  x = [1 2 3];
4
  y = [4 5 6];
5
  z = x ++ y; # List concatenation
6
in {
7
  inherit x y z;
8
}