Files
wren/test/core/string/to_string.wren

8 lines
286 B
Plaintext
Raw Normal View History

System.print("".toString == "") // expect: true
System.print("blah".toString == "blah") // expect: true
2015-02-04 13:58:16 +01:00
2015-02-04 20:26:29 -08:00
// 8-bit clean.
System.print("a\0b\0c".toString == "a\0b\0c") // expect: true
System.print("a\0b\0c".toString == "a") // expect: false
System.print("a\0b\0c".toString) // expect: a