Files
wren/test/core/number/is_infinity.wren
2015-09-30 08:41:43 -07:00

4 lines
144 B
Plaintext

System.print(123.isInfinity) // expect: false
System.print((1/0).isInfinity) // expect: true
System.print((-10/0).isInfinity) // expect: true