mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 14:53:42 +02:00
11 lines
135 B
ObjectPascal
11 lines
135 B
ObjectPascal
Program Example3;
|
|
|
|
{ Program to demonstrate the arcosh function. }
|
|
|
|
Uses math;
|
|
|
|
begin
|
|
Writeln(arcosh(1));
|
|
Writeln(arcosh(2));
|
|
end.
|