Skip to content

Commit 2728ffe

Browse files
committed
Add test
Fixes #95
1 parent ac15221 commit 2728ffe

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

test/test1.ok

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,5 @@
5151
(let *= a 3)
5252
(let /= a 4)
5353
(let %= a 5)
54+
(let ..= a 'foo')
55+
(echo (concat (concat 'foo' 'bar') 'baz'))

test/test1.vim

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,5 @@ let a += 2
5656
let a *= 3
5757
let a /= 4
5858
let a %= 5
59+
let a ..= 'foo'
60+
echo ('foo' .. 'bar')..'baz'

0 commit comments

Comments
 (0)