2014-01-05 12:27:12 -08:00
|
|
|
IO.print(123) // expect: 123
|
|
|
|
|
IO.print(987654) // expect: 987654
|
|
|
|
|
IO.print(0) // expect: 0
|
|
|
|
|
IO.print(-0) // expect: -0
|
2013-10-27 22:45:40 -07:00
|
|
|
|
2014-01-05 12:27:12 -08:00
|
|
|
IO.print(123.456) // expect: 123.456
|
|
|
|
|
IO.print(-0.001) // expect: -0.001
|
2013-11-09 21:32:57 -08:00
|
|
|
|
2015-02-22 20:06:17 -08:00
|
|
|
// TODO: Scientific notation?
|
2013-12-14 15:28:18 -08:00
|
|
|
// TODO: Literals at and beyond numeric limits.
|