2014-01-05 20:27:12 +00:00
|
|
|
IO.print(123.toString == "123") // expect: true
|
2015-01-09 07:06:50 +00:00
|
|
|
IO.print((-123).toString == "-123") // expect: true
|
|
|
|
|
IO.print((-0).toString == "-0") // expect: true
|
2014-01-05 20:27:12 +00:00
|
|
|
IO.print(12.34.toString == "12.34") // expect: true
|
2015-01-09 07:06:50 +00:00
|
|
|
IO.print((-0.0001).toString == "-0.0001") // expect: true
|