fpc/docs/sysutex/ex78.pp
1999-06-05 10:49:59 +00:00

14 lines
227 B
ObjectPascal

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.