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