summaryrefslogtreecommitdiff
path: root/fpcdocs/sysutex/ex78.pp
blob: 5815f31c3795fae67b260d4f4c1e59ebc7a66eb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Program Example78;

{ This program demonstrates the QuotedStr function }

Uses sysutils;

Var S : AnsiString;

Begin
  S:='He said ''Hello'' and walked on';
  Writeln (S);
  Writeln ('  becomes');
  Writeln (QuotedStr(S));
End.