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

5 lines
105 B
Plaintext
Raw Normal View History

2015-09-01 08:16:04 -07:00
class Foo {
construct new() {}
}
2015-09-15 07:46:09 -07:00
System.print(Foo.new().toString == "instance of Foo") // expect: true