Add IO class.

With io.write(), can start writing tests now.
This commit is contained in:
Bob Nystrom
2013-10-27 22:45:40 -07:00
parent ca445412b8
commit 95fb0863d9
7 changed files with 228 additions and 45 deletions

View File

@ -0,0 +1,6 @@
io.write(123) // expect: 123
io.write(987654) // expect: 987654
io.write(0) // expect: 0
io.write(-0) // expect: 0
// TODO(bob): Floating point numbers.