ex81.pp 226 B

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