Files
wren/test/core/system/write_all.wren
T

11 lines
183 B
Plaintext
Raw Normal View History

class Foo {
construct new() {}
toString { "Foo" }
}
System.writeAll([]) // expect:
System.print()
System.writeAll([1, true, Foo.new(), "s"]) // expect: 1trueFoos
System.print()