mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-25 14:49:09 +02:00
13 lines
175 B
ObjectPascal
13 lines
175 B
ObjectPascal
Program Example97;
|
|
|
|
{$H+}
|
|
|
|
{ Program to demonstrate the StringOfChar function. }
|
|
|
|
Var S : String;
|
|
|
|
begin
|
|
S:=StringOfChar(' ',40)+'Aligned at column 41.';
|
|
Writeln(s);
|
|
end.
|