Move IO into a separate module.

This commit is contained in:
Bob Nystrom
2014-02-04 08:44:59 -08:00
parent ba06a4fd8a
commit 36df70dba1
13 changed files with 182 additions and 96 deletions
+12
View File
@@ -0,0 +1,12 @@
class IO {
static print(obj) {
IO.writeString_(obj.toString)
IO.writeString_("\n")
return obj
}
static write(obj) {
IO.writeString_(obj.toString)
return obj
}
}