fpc/docs/mathex/ex17.pp
2000-07-06 12:36:10 +00:00

10 lines
129 B
ObjectPascal

Program Example17;
{ Program to demonstrate the hypot function. }
Uses math;
begin
Writeln(hypot(3,4)); // should be 5
end.