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

{ Program to demonstrate the cosh function. }

Uses math;

begin
  Writeln(Cosh(0));
  Writeln(Cosh(1));
end.