ex70.pp 213 B

12345678910111213
  1. Program Example70;
  2. { This program demonstrates the FmtStr function }
  3. Uses sysutils;
  4. Var S : AnsiString;
  5. Begin
  6. S:='';
  7. FmtStr (S,'For some nice examples of fomatting see %s.',['Format']);
  8. Writeln (S);
  9. End.