mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-10 22:22:49 +02:00
16 lines
215 B
ObjectPascal
16 lines
215 B
ObjectPascal
Program Example36;
|
|
|
|
{ Program to demonstrate the Length function. }
|
|
|
|
Var S : String;
|
|
I : Integer;
|
|
|
|
begin
|
|
S:='';
|
|
for i:=1 to 10 do
|
|
begin
|
|
S:=S+'*';
|
|
Writeln (Length(S):2,' : ',s);
|
|
end;
|
|
end.
|