2015-09-15 14:46:09 +00:00
|
|
|
System.print("a" + "b") // expect: ab
|
feat: add 8-bit string test cases across concatenation, contains, count, ends_with, equality, index_of, iterate, iterator_value, join, starts_with, subscript, and to_string
2015-02-04 12:58:16 +00:00
|
|
|
|
2015-02-05 04:26:29 +00:00
|
|
|
// 8-bit clean.
|
2015-09-15 14:46:09 +00:00
|
|
|
System.print(("a\0b" + "\0c") == "a\0b\0c") // expect: true
|