DEBSOURCES
Skip Quicknav
sources / fpc / 2.4.0-2 / fpcdocs / mathex / ex42.pp
1234567891011
Program Example42; { Program to demonstrate the sinh function. } Uses math; begin writeln(sinh(0)); writeln(sinh(1)); writeln(sinh(-1)); end.