mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-17 05:03:11 +01:00
11 lines
129 B
ObjectPascal
11 lines
129 B
ObjectPascal
Program Example8;
|
|
|
|
{ Program to demonstrate the cosh function. }
|
|
|
|
Uses math;
|
|
|
|
begin
|
|
Writeln(Cosh(0));
|
|
Writeln(Cosh(1));
|
|
end.
|