docs: add full documentation for io module covering Directory, File, and Stdin classes

This commit is contained in:
Bob Nystrom
2015-12-30 05:56:44 +00:00
parent 9dd956dc10
commit 0e1129bef3
6 changed files with 84 additions and 7 deletions
+8 -3
View File
@@ -1,7 +1,12 @@
^title Stdin Class
**TODO**
The standard input stream.
## Methods
## Static Methods
**TODO**
### **readLine**()
Reads one line of input from stdin. Blocks the current fiber until a full line
of input has been received.
Returns the string of input or `null` if stdin is closed.