RosettaCodeData/Task/Here-document/PascalABC.NET/here-document.pas

9 lines
94 B
ObjectPascal
Raw Permalink Normal View History

2024-10-16 18:07:41 -07:00
begin
var s := '''
Multiline
string
with apostrophes ' and ''
''';
Write(s);
end.