| File Handling |
newFile(), open(), .readLine(), .writeLine(), .endOfFile(), .close() |
Use a file variable, e.g. myFile = open("scores.txt") |
| Arrays |
array name[n], array name[r,c], name[i], name[i,j] |
Arrays are 0-indexed |
| String Operations |
.length, .substring(x,i), .left(i), .right(i), .upper, .lower |
Includes ASC(...) and CHR(...) |
| Comparison |
==, !=, <, <=, >, >= |
Boolean: AND, OR, NOT |
| Arithmetic |
+, -, *, /, ^, MOD, DIV |
^ is exponent |