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

12 lines
151 B
ObjectPascal

Program Example48;
{ Program to demonstrate the Tanh function. }
Uses math;
begin
writeln(tanh(0));
writeln(tanh(1));
writeln(tanh(-1));
end.