We may come across a scenario where we want to display message in new line, X3 has a function to achieve this.”chr$” function converts a numerical value in an ascii character, syntax as below.
Syntax:
chr$( exp_ent ).
“chr$” returns a character whose ascii code corresponds to the argument (if there is a corresponding ascii code).It is the converse function of function ascii. The result type is Char.
Chr$(13) is the carriage return (Newline), It is closely associated with line feed and newline.
Below is the snippet for the same.