DEBSOURCES
Skip Quicknav
sources / fpc / 2.6.4%2Bdfsg-4 / fpcdocs / mathex / ex48.pp
1234567891011
Program Example48; { Program to demonstrate the Tanh function. } Uses math; begin writeln(tanh(0)); writeln(tanh(1)); writeln(tanh(-1)); end.