var
tab : char;
crlf : string;
begin
// Show the use of Chr
tab := chr(9);
crlf := chr(13)+chr(10);
ShowMessage('Hello'+tab+'World');
ShowMessage('');
ShowMessage('Hello'+crlf+'World');
ShowMessage('');
// Show the equivalent use of ^
tab := ^I; // I = 9th capital of the alphabet
crlf := ^M^J; // M = 13th, J = 10th letters
ShowMessage('Hello'+tab+'World');
ShowMessage('');
ShowMessage('Hello'+crlf+'World');
end;