// retoor <retoor@molodetz.nl>
|
|
|
|
System.print(100.log10) // expect: 2
|
|
System.print(1000.log10) // expect: 3
|
|
System.print(1.log10) // expect: 0
|
|
|
|
System.print(0.sinh) // expect: 0
|
|
System.print(0.cosh) // expect: 1
|
|
System.print(0.tanh) // expect: 0
|