Files
wren/test/language/number/literals.wren
T

11 lines
285 B
Plaintext
Raw Normal View History

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
// TODO: Scientific notation?
// TODO: Literals at and beyond numeric limits.