fpc/docs/refex/ex97.pp
2000-05-14 15:04:30 +00:00

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.