feat: make IO.printAll public and require parentheses on IO.read

Rename private `printList_` to public `printAll` across all overloaded `IO.print` methods in both Wren source and embedded C string. Update `IO.read` to require explicit `()` call syntax in test and documentation. Revise IO documentation to clarify `print`, `printAll`, `write`, and `read` semantics with updated examples.
This commit is contained in:
Bob Nystrom
2015-07-18 21:09:00 +00:00
parent 35305797b2
commit bcd4df7e25
5 changed files with 96 additions and 80 deletions
+1 -1
View File
@@ -1 +1 @@
IO.write(IO.read) // expect: null
IO.write(IO.read()) // expect: null