Skip to content

Commit 0433492

Browse files
committed
Prepare for release 3.6.
1 parent 5175a0a commit 0433492

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is a fast interpreter for the BASIC language on the Atari 8-bit computers.
66
The current features are:
77
- Support for Atari floating point and 16bit integer variables;
88
- Support for string arrays, substrings and concatenation;
9-
- Small size (currently the full floating point IDE is 9.5k, the integer IDE is 8k, and the runtime is less than 3k);
9+
- Small size (currently the full floating point IDE is 9.3k, the integer IDE is 8k, and the runtime is less than 3k);
1010
- Fast execution (currently, about 43% faster than compiled TurboBasicXL in the "sieve.bas" benchmark, 5 times faster than OSS Integer Basic);
1111
- Modern syntax (no line numbers, many control structures);
1212
- Feels "alike" TurboBasicXL, with many of the extended statements.

help.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
'
2-
' FastBasic v3.5 - (c) 2018 dmsc
2+
' FastBasic v3.6 - (c) 2018 dmsc
33
'
44
' Editor Help
55
' -----------

manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ prompt. This will load the IDE and
5151
present you with a little help text:
5252

5353
--D:HELP.TXT-------------------0--
54-
' FastBasic v3.5 - (c) 2018 dmsc
54+
' FastBasic v3.6 - (c) 2018 dmsc
5555
'
5656
' Editor Help
5757
' -----------

src/compiler/main.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ static bool readLine(std::string &r, std::istream &is)
9393

9494
static int show_version()
9595
{
96-
std::cerr << "FastBasic v3.5 - (c) 2018 dmsc\n";
96+
std::cerr << "FastBasic v3.6 - (c) 2018 dmsc\n";
9797
return 0;
9898
}
9999

0 commit comments

Comments
 (0)