1
0
forked from Mirror/wren
Files
wren/test/language/number/literals.wren
2015-08-16 11:50:45 +02:00

10 lines
255 B
Plaintext

IO.print(123) // expect: 123
IO.print(987654) // expect: 987654
IO.print(0) // expect: 0
IO.print(-0) // expect: -0
IO.print(123.456) // expect: 123.456
IO.print(-0.001) // expect: -0.001
// TODO: Literals at and beyond numeric limits.