DEBSOURCES
Skip Quicknav
sources / fpc / 2.4.0-2 / fpcdocs / mathex / ex5.pp
12345678910
Program Example5; { Program to demonstrate the artanh function. } Uses math; begin Writeln(artanh(0)); Writeln(artanh(0.5)); end.