Chr() literals could be hard coded into string constants to make them more efficient.
In addition to this, a simple extension of the syntax could support multiple character literals:
chr(13,10)
cr=chr(13,10)
term=chr(0,0)
highChars=chr(1,28,129,130,131,132)
Charles