Files
wren/test/string/concatenation.wren
T

5 lines
108 B
Plaintext
Raw Normal View History

2014-04-08 21:17:49 -07:00
IO.print("a" + "b") // expect: ab
2015-02-04 13:58:16 +01:00
2015-02-04 20:26:29 -08:00
// 8-bit clean.
2015-02-04 13:58:16 +01:00
IO.print(("a\0b" + "\0c") == "a\0b\0c") // expect: true