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

10 lines
142 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.