blob: 13e552a26399c54f75c623d15dccaf472b3bf05c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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.
|