Files
wren/test/core/number/sqrt.wren
T

11 lines
316 B
Plaintext
Raw Normal View History

2014-01-08 07:47:14 -08:00
IO.print(4.sqrt) // expect: 2
IO.print(1000000.sqrt) // expect: 1000
IO.print(1.sqrt) // expect: 1
2015-01-09 20:06:50 +13:00
IO.print((-0).sqrt) // expect: -0
2014-01-08 07:47:14 -08:00
IO.print(0.sqrt) // expect: 0
IO.print(2.sqrt) // expect: 1.4142135623731
2015-01-09 20:06:50 +13:00
IO.print((-4).sqrt.isNan) // expect: true
2014-01-08 07:47:14 -08:00
// TODO: Tests for sin and cos.