feat: replace IO class with System class and remove separate IO module

- Delete wren_io.c, wren_io.h, and io.wren source files
- Remove multi-arity print overloads and IO.read/IO.time methods
- Add System class with print, printAll, write, writeAll methods to core.wren
- Update all documentation examples and README to use System.print instead of IO.print
This commit is contained in:
Bob Nystrom
2015-09-15 14:46:09 +00:00
parent f12581a674
commit aa72900a9e
491 changed files with 3285 additions and 3544 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
var f
for (i in [1, 2, 3]) {
var j = 4
f = Fn.new { IO.print(i + j) }
f = Fn.new { System.print(i + j) }
break
}
+1 -1
View File
@@ -1,7 +1,7 @@
var f
while (true) {
var i = "i"
f = Fn.new { IO.print(i) }
f = Fn.new { System.print(i) }
break
}
+1 -1
View File
@@ -1,5 +1,5 @@
for (i in 0..10) {
IO.print(i)
System.print(i)
{
var a = "a"
+2 -2
View File
@@ -1,7 +1,7 @@
for (i in [1, 2, 3, 4, 5]) {
IO.print(i)
System.print(i)
if (i > 2) break
IO.print(i)
System.print(i)
}
// expect: 1
// expect: 1
+2 -2
View File
@@ -1,9 +1,9 @@
var i = 0
while (true) {
i = i + 1
IO.print(i)
System.print(i)
if (i > 2) break
IO.print(i)
System.print(i)
}
// expect: 1
// expect: 1
+2 -2
View File
@@ -1,9 +1,9 @@
for (i in 0..2) {
IO.print("outer ", i)
System.print("outer " + i.toString)
if (i > 1) break
for (j in 0..2) {
IO.print("inner ", j)
System.print("inner " + j.toString)
if (j > 1) break
}
}
+2 -2
View File
@@ -1,11 +1,11 @@
var i = 0
while (true) {
IO.print("outer ", i)
System.print("outer " + i.toString)
if (i > 1) break
var j = 0
while (true) {
IO.print("inner ", j)
System.print("inner " + j.toString)
if (j > 1) break
j = j + 1