mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 20:53:48 +02:00
12 lines
151 B
ObjectPascal
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.
|