fpc/docs/refex/ex65.pp
2005-02-14 17:13:06 +00:00

10 lines
138 B
ObjectPascal

Program Example65;
{ Program to demonstrate the Sqr function. }
Var i : Integer;
begin
For i:=1 to 10 do
writeln (Sqr(i):3);
end.