From 202bef087af37c6b8d22221ae1a6742c8edde626 Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Mon, 6 May 2013 20:13:10 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 50368ba..fcb47d2 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Notes & Known Issues * The BASIC program is compiled to JavaScript before execution. Syntax errors are therefore detected at compile-time rather than at run-time as on a traditional interpreter. For example, the following program would run without errors on an Apple since the erroneous second statement is never reached. `10 END : CHR$(PRINT)` * Handling of BASIC code that does not match the canonical `LIST` output format may not behave as on an Apple: * Keyword parsing differs from Applesoft command line. For example `FOR I = S TO P` doesn't collapse into `FOR I = STOP`. -* The interpreter doesn't actually care about line numbers for statement ordering (just for `GOTO/GOSUB` targets and `IF` statements). So `20 PRINT "A", 10 PRINT "B"` will just print `A`, then `B` +* The interpreter doesn't actually care about line numbers for statement ordering (just for `GOTO/GOSUB` targets and `IF` statements). So `20 PRINT "A"`, `10 PRINT "B"` will just print `A`, then `B` * To improve readability, lines may start with : and continue the previously numbered line. * Floating point overflow is only detected on variable assignment. * The DOS operating system implements only a subset of DOS 3.3 and ProDOS useful for basic file I/O.