Thursday, May 12, 2022

🆕 The "two-chracter" relational operators (<>, >=,<=) now allow spaces between the characters

To be compatible with GW-BASIC and QB64, BASIC Anywhere Machine now allows one or more spaces between the characters in two-character relational operators, for example:

a <> b and a <  > b are both valid

No comments:

Post a Comment

📚 Simulating OOP Methods in BAM Using GOSUB

BASIC Anywhere Machine's GOSUB implementation allows using numeric expressions for dynamic line numbers or using string expressions for ...