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

10 lines
279 B
Plaintext
Raw Normal View History

2015-09-15 07:46:09 -07:00
System.print(123) // expect: 123
System.print(987654) // expect: 987654
System.print(0) // expect: 0
System.print(-0) // expect: -0
2013-10-27 22:45:40 -07:00
2015-09-15 07:46:09 -07:00
System.print(123.456) // expect: 123.456
System.print(-0.001) // expect: -0.001
2013-11-09 21:32:57 -08:00
// TODO: Literals at and beyond numeric limits.