aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/tuple/sub.sy
diff options
context:
space:
mode:
authorGustav Sörnäs <gustav@sornas.net>2021-03-09 19:52:19 +0100
committerGustav Sörnäs <gustav@sornas.net>2021-03-09 19:52:19 +0100
commite61e0a3d3bc015854c91761a70544e74b0478b94 (patch)
treed494b8771dc71b52aa56fe948e7e6eab260d216a /progs/tests/tuple/sub.sy
parentf672c43cb65b30be0cec9397a7c1deef9d30b61d (diff)
parent345cb8efef31af3e6fda65357fbab25664d385a2 (diff)
downloadsylt-e61e0a3d3bc015854c91761a70544e74b0478b94.tar.gz
Merge remote-tracking branch 'origin/main' into move-testsmove-tests
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)
}