release-1.8
This release makes a small number of improvements to the interpreter:
- Allow assignments without
LET
. - Allow
DATA
to beREAD
into an array-variable.- Previously only scalar-variables could be the target of
READ
. - #88
- Previously only scalar-variables could be the target of
- Publish binaries for Microsoft Windows.
- Mentioned some of our limitations, and limit the scope of the project in our README.md file.
- Specifically this section of the README.md file.
- #79
- We now correctly ignore
DATA
andDEF FN
statements inside comments. - We've added the
SWAP
primitive to allow exchanging two variable contents.- This is demonstrated in the 100-array-sort.bas example program.
- #90