summaryrefslogtreecommitdiff
path: root/fpcdocs/mathex/ex48.pp
blob: ee569d9bbb56deb7e9b76dcd13a199bbff5bf7a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
Program Example48;

{ Program to demonstrate the Tanh function. }

Uses math;

begin
  writeln(tanh(0));
  writeln(tanh(1));
  writeln(tanh(-1));
end.