Clean up text handling a bit:
- Rename IO.write -> IO.print. - Make IO.write not print a newline. - Support \u Unicode escapes in strings.
This commit is contained in:
@@ -3,7 +3,7 @@ var list = []
|
||||
var i = 1
|
||||
while (i < 4) {
|
||||
var j = i + 1
|
||||
list.add(fn IO.write(j))
|
||||
list.add(fn IO.print(j))
|
||||
i = i + 1
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user