diff --git a/README.md b/README.md index fea55ec..1af4bbb 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This is a fast interpreter for the BASIC language on the Atari 8-bit computers. The current features are: - Support for Atari floating point and 16bit integer variables; - Support for string arrays, substrings and concatenation; -- Small size (currently the full floating point IDE is 9.5k, the integer IDE is 8k, and the runtime is less than 3k); +- Small size (currently the full floating point IDE is 9.3k, the integer IDE is 8k, and the runtime is less than 3k); - Fast execution (currently, about 43% faster than compiled TurboBasicXL in the "sieve.bas" benchmark, 5 times faster than OSS Integer Basic); - Modern syntax (no line numbers, many control structures); - Feels "alike" TurboBasicXL, with many of the extended statements. diff --git a/help.txt b/help.txt index 14fb0ce..fc08992 100644 --- a/help.txt +++ b/help.txt @@ -1,5 +1,5 @@ ' -' FastBasic v3.5 - (c) 2018 dmsc +' FastBasic v3.6 - (c) 2018 dmsc ' ' Editor Help ' ----------- diff --git a/manual.md b/manual.md index d21d895..1e17334 100644 --- a/manual.md +++ b/manual.md @@ -51,7 +51,7 @@ prompt. This will load the IDE and present you with a little help text: --D:HELP.TXT-------------------0-- - ' FastBasic v3.5 - (c) 2018 dmsc + ' FastBasic v3.6 - (c) 2018 dmsc ' ' Editor Help ' ----------- diff --git a/src/compiler/main.cc b/src/compiler/main.cc index 7ae3baf..59fc4d6 100644 --- a/src/compiler/main.cc +++ b/src/compiler/main.cc @@ -93,7 +93,7 @@ static bool readLine(std::string &r, std::istream &is) static int show_version() { - std::cerr << "FastBasic v3.5 - (c) 2018 dmsc\n"; + std::cerr << "FastBasic v3.6 - (c) 2018 dmsc\n"; return 0; }