Allow multiple arguments to IO.print().

This commit is contained in:
Bob Nystrom
2014-04-09 07:48:35 -07:00
parent dfe65305c3
commit 7393e12555
14 changed files with 176 additions and 25 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
class Foo {
static sayName {
IO.print(Foo.toString)
IO.print(Foo)
}
sayName {
IO.print(Foo.toString)
IO.print(Foo)
}
static toString { "Foo!" }