Oxygen Basic

Programming => Bugs & Feature Requests => Topic started by: Charles Pegge on June 30, 2012, 10:23:55 AM

Title: Proposed extension of chr syntax
Post by: Charles Pegge on June 30, 2012, 10:23:55 AM

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