Files
wren/test/core/object/to_string.wren
T

5 lines
105 B
Plaintext
Raw Normal View History

class Foo {
construct new() {}
}
System.print(Foo.new().toString == "instance of Foo") // expect: true