mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 14:59:29 +02:00
10 lines
142 B
ObjectPascal
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.
|