2014-01-05 20:27:12 +00:00
|
|
|
IO.print(123) // expect: 123
|
|
|
|
|
IO.print(987654) // expect: 987654
|
|
|
|
|
IO.print(0) // expect: 0
|
|
|
|
|
IO.print(-0) // expect: -0
|
2013-10-28 05:45:40 +00:00
|
|
|
|
2014-01-05 20:27:12 +00:00
|
|
|
IO.print(123.456) // expect: 123.456
|
|
|
|
|
IO.print(-0.001) // expect: -0.001
|
2013-11-10 05:32:57 +00:00
|
|
|
|
2013-12-14 23:28:18 +00:00
|
|
|
// TODO: Literals at and beyond numeric limits.
|