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

4 lines
136 B
Plaintext
Raw Normal View History

System.print(0.tan) // expect: 0
System.print((Num.pi / 4).tan) // expect: 1
System.print((-Num.pi / 4).tan) // expect: -1