mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:28:55 +02:00
12 lines
150 B
ObjectPascal
12 lines
150 B
ObjectPascal
uses
|
|
math;
|
|
|
|
begin
|
|
writeln(tanh(-354));
|
|
if tanh(-354)<>-1 then
|
|
halt(1);
|
|
writeln(tanh(-355));
|
|
if tanh(-355)<>-1 then
|
|
halt(1);
|
|
end.
|