wren_rust 0.1.3

Bindings to the Wren scripting language API
1
2
3
4
5
6
7
System.print("".toString == "") // expect: true
System.print("blah".toString == "blah") // expect: true

// 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