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

13 lines
271 B
Plaintext
Raw Normal View History

2015-09-15 07:46:09 -07:00
class Foo {
construct new() {}
toString { "Foo.toString" }
}
// Calls toString on argument.
System.print(Foo.new()) // expect: Foo.toString
// Returns the argument.
System.print(System.print(1) == 1) // expect: 1
// expect: true