# Test basic list support let x = [1 2 3]; y = [4 5 6]; z = x ++ y; # List concatenation in { inherit x y z; }