summaryrefslogtreecommitdiff
path: root/fpcdocs/sysutex/ex70.pp
blob: df0a1af1b8a152cf587d496a973705852ef362b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Program Example70;

{ This program demonstrates the FmtStr function }

Uses sysutils;

Var S : AnsiString;

Begin
  S:='';
  FmtStr (S,'For some nice examples of fomatting see %s.',['Format']);
  Writeln (S);
End.