aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/tuple/sub.sy
diff options
context:
space:
mode:
Diffstat (limited to 'progs/tests/tuple/sub.sy')
-rw-r--r--progs/tests/tuple/sub.sy3
1 files changed, 2 insertions, 1 deletions
diff --git a/progs/tests/tuple/sub.sy b/progs/tests/tuple/sub.sy
index e5d60f2..cca4f2c 100644
--- a/progs/tests/tuple/sub.sy
+++ b/progs/tests/tuple/sub.sy
@@ -1,3 +1,4 @@
start :: fn {
- (1, -2, 3, -4) - (4, 3, -2, -1) <=> (-3, 1, 1, -5)
+ print (1, -2, 3, -4) - (4, 3, -2, -1)
+ (1, -2, 3, -4) - (4, 3, -2, -1) <=> (-3, -5, 5, -3)
}