DEBSOURCES
Skip Quicknav
sources / fpc / 2.4.0-2 / fpcdocs / mathex / ex8.pp
12345678910
Program Example8; { Program to demonstrate the cosh function. } Uses math; begin Writeln(Cosh(0)); Writeln(Cosh(1)); end.