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

4 lines
124 B
Plaintext
Raw Normal View History

2015-03-19 21:12:50 +01:00
IO.print(0.tan) // expect: 0
IO.print((Num.pi / 4).tan) // expect: 1
IO.print((-Num.pi / 4).tan) // expect: -1