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

9 lines
153 B
Plaintext
Raw Normal View History

2015-09-15 07:46:09 -07:00
class Foo {
construct new() {}
toString { "Foo" }
}
System.printAll([]) // expect:
System.printAll([1, true, Foo.new(), "s"]) // expect: 1trueFoos