diff options
Diffstat (limited to '')
-rw-r--r-- | spec/inputs/string.yue | 1 | ||||
-rw-r--r-- | spec/outputs/string.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/spec/inputs/string.yue b/spec/inputs/string.yue index 201e60d..f91383e 100644 --- a/spec/inputs/string.yue +++ b/spec/inputs/string.yue | |||
@@ -51,6 +51,7 @@ d = "#{hello world}" | |||
51 | e = "#{1} #{2} #{3}" | 51 | e = "#{1} #{2} #{3}" |
52 | 52 | ||
53 | f = [[hello #{world} world]] | 53 | f = [[hello #{world} world]] |
54 | g = "\#{hello world}" | ||
54 | 55 | ||
55 | -- | 56 | -- |
56 | 57 | ||
diff --git a/spec/outputs/string.lua b/spec/outputs/string.lua index 87ecf2c..febea62 100644 --- a/spec/outputs/string.lua +++ b/spec/outputs/string.lua | |||
@@ -29,6 +29,7 @@ local c = "hello " .. tostring(5 + 1) | |||
29 | local d = tostring(hello(world)) | 29 | local d = tostring(hello(world)) |
30 | local e = tostring(1) .. " " .. tostring(2) .. " " .. tostring(3) | 30 | local e = tostring(1) .. " " .. tostring(2) .. " " .. tostring(3) |
31 | local f = [[hello #{world} world]] | 31 | local f = [[hello #{world} world]] |
32 | local g = "#{hello world}" | ||
32 | a = 'hello #{hello} hello' | 33 | a = 'hello #{hello} hello' |
33 | b = '#{hello} hello' | 34 | b = '#{hello} hello' |
34 | c = 'hello #{hello}' | 35 | c = 'hello #{hello}' |