var
Str1, Str2: string;
begin
//no backslash escapes in Delphi;
//a quote is doubled inside a literal
Str1 := 'She said "Hello!" to me.';
Str2 := 'It''s fine';
//control characters go by #code
WriteLn('one'#9'two');
//one<tab>two
WriteLn('one'#13#10'two');
//two lines
WriteLn(Str1);
WriteLn(Str2);
end.