mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 01:49:30 +02: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.
|