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

4 lines
136 B
Plaintext
Raw Normal View History

2015-09-15 07:46:09 -07:00
System.print(0.tan) // expect: 0
System.print((Num.pi / 4).tan) // expect: 1
System.print((-Num.pi / 4).tan) // expect: -1