fpc/docs/sysutex/ex80.pp
1999-06-05 10:49:59 +00:00

12 lines
222 B
ObjectPascal

Program Example80;
{ This program demonstrates the StrFmt function }
Uses sysutils;
Var S : AnsiString;
Begin
SetLEngth(S,80);
Writeln (StrFmt (@S[1],'For some nice examples of fomatting see %s.',['Format']));
End.