brewery
notashelf /
760094a2b70a3abacac0d386b19bd7274244782f

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
}