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,6 +1,6 @@
class A {
new(arg) {
IO.print("new A " + arg)
IO.print("new A ", arg)
_field = arg
}
@@ -10,7 +10,7 @@ class A {
class B is A {
new(arg1, arg2) {
super(arg2)
IO.print("new B " + arg1)
IO.print("new B ", arg1)
_field = arg1
}