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