Skip to content

Commit

Permalink
Prepare for release 3.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmsc committed Oct 27, 2018
1 parent 5175a0a commit 0433492
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion help.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'
' FastBasic v3.5 - (c) 2018 dmsc
' FastBasic v3.6 - (c) 2018 dmsc
'
' Editor Help
' -----------
Expand Down
2 changes: 1 addition & 1 deletion manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
' -----------
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 0433492

Please sign in to comment.