fpc/docs/mathex/ex42.pp
2000-07-08 17:10:53 +00:00

12 lines
151 B
ObjectPascal

Program Example42;
{ Program to demonstrate the sinh function. }
Uses math;
begin
writeln(sinh(0));
writeln(sinh(1));
writeln(sinh(-1));
end.