aboutsummaryrefslogtreecommitdiffstats
path: root/tests/order-of-operations.tdy
diff options
context:
space:
mode:
authorGustav Sörnäs <gustav@sornas.net>2021-01-16 01:46:12 +0100
committerGustav Sörnäs <gustav@sornas.net>2021-01-16 01:46:12 +0100
commite4c01e1c86bd9035750d91762f7a0868f0f56d54 (patch)
treef41bdad633874a94c84b6d54695a6bf95b0eb317 /tests/order-of-operations.tdy
parent85b12e35035af28a20d70b1fe3b319156004b24b (diff)
downloadsylt-e4c01e1c86bd9035750d91762f7a0868f0f56d54.tar.gz
move some tests to strings and test_multiple!
Diffstat (limited to 'tests/order-of-operations.tdy')
-rw-r--r--tests/order-of-operations.tdy10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/order-of-operations.tdy b/tests/order-of-operations.tdy
deleted file mode 100644
index 4f635b0..0000000
--- a/tests/order-of-operations.tdy
+++ /dev/null
@@ -1,10 +0,0 @@
-1 + 1 * 2 <=> 3
-1 * 2 + 3 <=> 5
-5 <=> 1 * 2 + 3
-(1 + 2) * 3 <=> 9
-//-
--1 <=> 0 - 1
--1 + 2 <=> 1
--(1 + 2) <=> -3
-1 + -1 <=> 0
-2 * -1 <=> -2