fpc/docs/mathex/ex3.pp
2000-07-04 21:24:14 +00:00

11 lines
135 B
ObjectPascal

Program Example3;
{ Program to demonstrate the arcosh function. }
Uses math;
begin
Writeln(arcosh(1));
Writeln(arcosh(2));
end.