fpc/docs/mathex/ex8.pp
2000-07-06 12:36:10 +00:00

11 lines
129 B
ObjectPascal

Program Example8;
{ Program to demonstrate the cosh function. }
Uses math;
begin
Writeln(Cosh(0));
Writeln(Cosh(1));
end.