Files
wren/test/core/string/concatenation.wren
T

5 lines
116 B
Plaintext
Raw Normal View History

2015-09-15 07:46:09 -07:00
System.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-09-15 07:46:09 -07:00
System.print(("a\0b" + "\0c") == "a\0b\0c") // expect: true