DEBSOURCES
Skip Quicknav
sources / fpc / 2.4.0-2 / 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.