aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorEdvard Thörnros <edvard.thornros@gmail.com>2021-01-11 15:40:32 +0100
committerEdvard Thörnros <edvard.thornros@gmail.com>2021-01-11 15:40:32 +0100
commit8435fd15cd1330d91cef2ed5ed862215c0f9942b (patch)
tree9f3434c95fb7810066fdf5e1ac63726de959aea8 /tests
parent0400311b2387b16b0fbd53a086634937cfc33ebc (diff)
downloadsylt-8435fd15cd1330d91cef2ed5ed862215c0f9942b.tar.gz
Correct string tokens
Diffstat (limited to 'tests')
-rw-r--r--tests/simple.tdy6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/simple.tdy b/tests/simple.tdy
index 59355d2..3fe05a4 100644
--- a/tests/simple.tdy
+++ b/tests/simple.tdy
@@ -15,10 +15,10 @@
a int := 2
if a == 0 {
- print 0
+ print "123"
} else if a == 1 {
- print 1
+ print "BCD"
} else {
- print 2
+ print "ABC"
}
// 1, 2, 3, 4