summaryrefslogtreecommitdiff
path: root/fpcdocs/mathex/ex3.pp
blob: f2a3fc5faec3bef32e918708fcfd36f5bdb3a26e (plain)
1
2
3
4
5
6
7
8
9
10
Program Example3;

{ Program to demonstrate the arcosh function. }

Uses math;

begin
  Writeln(arcosh(1));
  Writeln(arcosh(2));
end.