From 6d15697edce2217a2bbc82def26262d18dac6373 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Wed, 21 May 2025 14:25:45 -0400 Subject: Added Set infix operations, as well as Table.with_fallback() and fixed some bugs with update assignment. --- test/sets.tm | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test') 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| -- cgit v1.2.3