2015-09-15 14:46:09 +00:00
|
|
|
System.print(123) // expect: 123
|
|
|
|
|
System.print(987654) // expect: 987654
|
|
|
|
|
System.print(0) // expect: 0
|
|
|
|
|
System.print(-0) // expect: -0
|
2013-10-28 05:45:40 +00:00
|
|
|
|
2015-09-15 14:46:09 +00:00
|
|
|
System.print(123.456) // expect: 123.456
|
|
|
|
|
System.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.
|