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