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

10 lines
283 B
Plaintext
Raw Normal View History

2015-07-10 18:07:48 +02:00
var x = 2.55e2
2015-09-15 07:46:09 -07:00
System.print(x) // expect: 255
System.print(x + 1) // expect: 256
System.print(x == 255) // expect: true
System.print(2.55e-2 is Num) // expect: true
System.print(x is Num) // expect: true
System.print(-2.55e2) // expect: -255
System.print(-25500e-2) // expect: -255