diff options
| author | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-01-11 15:40:32 +0100 |
|---|---|---|
| committer | Edvard Thörnros <edvard.thornros@gmail.com> | 2021-01-11 15:40:32 +0100 |
| commit | 8435fd15cd1330d91cef2ed5ed862215c0f9942b (patch) | |
| tree | 9f3434c95fb7810066fdf5e1ac63726de959aea8 /tests | |
| parent | 0400311b2387b16b0fbd53a086634937cfc33ebc (diff) | |
| download | sylt-8435fd15cd1330d91cef2ed5ed862215c0f9942b.tar.gz | |
Correct string tokens
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/simple.tdy | 6 |
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 |
