fpc/docs/refex/ex66.pp
1998-03-25 11:26:49 +00:00

9 lines
162 B
ObjectPascal

Program Example66;
{ Program to demonstrate the Sqrt function. }
begin
Writeln (Sqrt(4):0:3); { Prints 2.000 }
Writeln (Sqrt(2):0:3); { Prints 1.414 }
end.