DEBSOURCES
Skip Quicknav
sources / fpc / 2.4.0-2 / fpcdocs / mathex / ex17.pp
123456789
Program Example17; { Program to demonstrate the hypot function. } Uses math; begin Writeln(hypot(3,4)); // should be 5 end.