aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/sets.tm9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/sets.tm b/test/sets.tm
index fe2e91f8..85e53463 100644
--- a/test/sets.tm
+++ b/test/sets.tm
@@ -40,3 +40,12 @@ func main()
>> empty : |Int| = ||
= ||
+
+ >> |1,2,3| or |3,4|
+ = |1,2,3,4|
+ >> |1,2,3| and |3,4|
+ = |3|
+ >> |1,2,3| xor |3,4|
+ = |1,2,4|
+ >> |1,2,3| - |3,4|
+ >> |1,2|