mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 13:29:28 +02:00
10 lines
129 B
ObjectPascal
10 lines
129 B
ObjectPascal
Program Example17;
|
|
|
|
{ Program to demonstrate the hypot function. }
|
|
|
|
Uses math;
|
|
|
|
begin
|
|
Writeln(hypot(3,4)); // should be 5
|
|
end.
|