diff --git a/test/collections.vli b/test/collections.vli new file mode 100644 index 0000000..c4c290b --- /dev/null +++ b/test/collections.vli @@ -0,0 +1,11 @@ +(assert (= [1 2 (+ 3 4)] + [1 2 7])) + +(assert (= (get [1 2 3] 2) + 3)) + +(assert (= {1 2 (+ 1 2) 4} + {1 2 3 4})) + +(assert (= (get {1 2 3 4} 3) + 4))