fpc/docs/sysutex/ex70.pp
1999-05-30 20:42:20 +00:00

13 lines
213 B
ObjectPascal

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.