DEBSOURCES
Skip Quicknav
sources / fpc / 2.4.0-2 / fpcdocs / mathex / ex3.pp
12345678910
Program Example3; { Program to demonstrate the arcosh function. } Uses math; begin Writeln(arcosh(1)); Writeln(arcosh(2)); end.