Activity for Bywater BASIC Interpreter

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on a blog post

    Wow! Amazing!

  • Tom Lake Tom Lake posted a comment on discussion Open Discussion

    The ECMA-116 choice doesn't follow the standard for strings. It uses MID$ to get characters. The standard uses an substring notation so that to print characters 2 through 4 , you'd do this: A$="THIS IS A TEST" PRINT A$(2:4) HIS Also, the MAT statements are missing. Are there any plans to increase compatibility?

  • Paul Edwards Paul Edwards modified ticket #3

    Do "fflush" to fix INPUT statement

  • Paul Edwards Paul Edwards posted a comment on ticket #3

    This patch was incorporated into a previous release and is no longer outstanding, so being closed now.

  • Paul Edwards Paul Edwards modified ticket #7

    Fix gcc warnings for renum.c

  • Paul Edwards Paul Edwards posted a comment on ticket #7

    The dev code previously discussed has been released in the new 3.30, so closing this now.

  • Paul Edwards Paul Edwards modified ticket #7

    Fix gcc warnings for renum.c

  • Paul Edwards Paul Edwards posted a comment on ticket #7

    The dev code previously discussed has been released in the new 3.30, so closing this now.

  • Paul Edwards Paul Edwards modified ticket #8

    Patch to handle binary files correctly

  • Paul Edwards Paul Edwards posted a comment on ticket #8

    The just-released 3.30 should fix this issue. Get back to me if there is any issue. Closing now.

  • Paul Edwards Paul Edwards modified ticket #1

    Bug in Function

  • Paul Edwards Paul Edwards posted a comment on ticket #1

    There was no counter-argument given to the claim that bwBASIC was not at fault here, so I am closing this. Raise a new bug and be more specific if you are still encountering an issue.

  • Paul Edwards Paul Edwards posted a comment on ticket #2

    The code shown disappeared in a revamp by another developer. If you're still having a problem, I will need a fresh patch.

  • Paul Edwards Paul Edwards modified ticket #10

    Possibly silent but latent bug in bwb_var.c caught with a more modern compiler.

  • Paul Edwards Paul Edwards posted a comment on ticket #10

    This patch should now be incorporated in the just-released 3.30

  • Paul Edwards Paul Edwards modified ticket #11

    Compilation error on Linux

  • Paul Edwards Paul Edwards posted a comment on ticket #11

    New release (3.30) has the updated instructions given.

  • Paul Edwards Paul Edwards modified ticket #12

    BWBasic 3.2 freezes after entering run#

  • Paul Edwards Paul Edwards posted a comment on ticket #12

    Fix incorporated in new 3.30

  • Paul Edwards Paul Edwards posted a comment on ticket #12

    The latest release (3.30) should have this patch incorporated. Closing now.

  • Paul Edwards Paul Edwards created a blog post

    bwBASIC 3.30 released

  • Bywater BASIC Interpreter Bywater BASIC Interpreter released /bwbasic/version 3.30/bwbasic-3.30.zip

  • Bywater BASIC Interpreter Bywater BASIC Interpreter released /bwbasic/version 3.30/bwbasic.exe

  • Paul Edwards Paul Edwards posted a comment on discussion Open Discussion

    Last release was 3.20 on 2017-07-07 I am going to do a new release soon. Other than the version number being changed, it is expected to be the same as what has already been released as part of the support packages for PdAndro: https://play.google.com/store/apps/details?id=com.cod5.pdos_pdandro&hl=en&gl=US https://github.com/robertapengelly/Pdos-PdAndro where there are Windows x86, x64, ARM32 and ARM64 executables available in the supporting packages at pdos.org I believe I kept up with the reported...

  • Shidel Shidel posted a comment on ticket #8

    Thank you

  • Paul Edwards Paul Edwards posted a comment on ticket #8

    Thanks. Have applied that and will be available next time I do a release.

  • Shidel Shidel created ticket #8

    Patch to handle binary files correctly

  • Giorgos Giorgos created ticket #13

    Greek characters can't be diplayed.

  • Oliver Oliver posted a comment on ticket #12

    Thank you very much. I can report that your second patch fixed the second bug. I did your test and everything worked like it should. Great work!

  • AF5NE AF5NE posted a comment on ticket #12

    After recompiling the following test should confirm the second bug is fixed. bwBASIC: REM TEST 'RUN' COMMAND bwBASIC: bwBASIC: bwBASIC: LIST 100 PRINT "HELLO" bwBASIC: SAVE "GOOD.BAS" bwBASIC: bwBASIC: bwBASIC: REM THESE SHOULD DISPLAY "HELLO" bwBASIC: bwBASIC: bwBASIC: RUN HELLO bwBASIC: RUN 100 HELLO bwBASIC: RUN#100 HELLO bwBASIC: RUN "GOOD.BAS" HELLO bwBASIC: bwBASIC: bwBASIC: REM THESE SHOULD DISPLAY AN ERROR MESSAGE bwBASIC: bwBASIC: bwBASIC: RUN 1 ERROR: Undefined line bwBASIC: RUN 999 ERROR:...

  • AF5NE AF5NE posted a comment on ticket #12

    Glad the initial bug is fixed. The attached "patch-20230419.txt" should fix the second bug you reported above.

  • Oliver Oliver modified a comment on ticket #12

    Thank you a lot for fixing that bug. Your fix worked. But i found another bug that is related to this bug. BWBasic freezes when trying to run code starting with a line number that is not in the code listing. I used your code listing example above and entered: run 150 And after pressing the return key, BWBasic freezes. See the screenshot below. The same applies for variants like this one: run # 150 or run #150 I added your fix manually. I didn't use the diff patch because I didn't have the appropriate...

  • Oliver Oliver modified a comment on ticket #12

    One more information. I found out that it is possible to switch back to the interpreter by pressing CTRL + C when a none existing line number was given to run the basic code. The problem with this is, BWBasic returns to the interpreter only, when only a number like run 150 was given and the keys CTRL+C was pressed If i enter a number with a # character run # 150 and then press the CTRL+C key, then BWBasic exists or crashes to DOS prompt. But from there, the memory seems to be rather corrupted, because...

  • Oliver Oliver posted a comment on ticket #12

    One more information. I found out that it is possible to switch back to the interpreter by pressing CTRL + C when a none existing line number was given to run the basic code. The problem with this is, BWBasic returns to the interpreter only, when only a number like run 150 was given and the keys CTRL+C was pressed If i enter a number with a # character run # 150 and then press the CTRL+C key, then BWBasic exists or crashes to DOS prompt. But from there, the memory seems to be rather corrupted, because...

  • Oliver Oliver modified a comment on ticket #12

    As an additional information to my last comment: I was curious how GW-BASIC reacts when entering a line number that doesn't exist. When trying to do so, it prints the line: Undefined line number OK And returns to the GW-BASIC interpreter. See screenshot as an example:

  • Oliver Oliver posted a comment on ticket #12

    As an addition information to my last comment: I was curious how GW-BASIC reacts when entering a line number that doesn't exist. When trying to do so, it prints the line: Undefined line number OK And returns to the GW-BASIC interpreter. See screenshot as an example:

  • Oliver Oliver posted a comment on ticket #12

    Thank you a lot for fixing that bug. Your fix worked. But i found a another bug that is related to this bug. BWBasic freezes when trying to run code starting with a line number that is not in the code listing. I used your code listing example above and entered: run 150 And after pressing the return key, BWBasic freezes. See the screenshot below. The same applies for variants like this one: run # 150 or run #150 I added your fix manually. I didn't use the diff patch because I didn't have the appropriate...

  • AF5NE AF5NE posted a comment on ticket #12

    Thanks for finding this bug. Sorry for the delay in responding - I am not often online. If you are comfortable updating the source code with diff/patch, the attached "patch-20230417.txt" should fix this bug and all the other bugs I know about. If you are not comfortable with diff/patch, then open "bwb_cmd.c" with a text editor and goto to around line 1555, which should look like this: if (line_read_expression (L, X) == FALSE) /* bwb_run_filename_or_linenumber */ { WARN_SYNTAX_ERROR; return L; } Update...

  • Oliver Oliver posted a comment on ticket #9

    Thanks.

  • Paul Edwards Paul Edwards posted a comment on ticket #9

    You can tell the Freedos people you would like it included, as an actual user. I'll leave the feature request open for Howard to comment about including the functionality in the interpreter itself.

  • Oliver Oliver modified a comment on ticket #9

    I see, thank you for your answer. Maybe informing the people from the FreeDOS project would be a good thing so they ship BWBASIC with a working RENUM executable in one of their next FreeDOS versions. On the other side, it would also be nice to have that command in the BWBasic interpreter in the first place.

  • Oliver Oliver posted a comment on ticket #9

    I see, thank you for your answer. Maybe informing the people from the FreeDOS project would be a good thing so they ship BWBASIC with a working RENUM executable in on of their next FreeDOS versions. On the other side, it would also be nice to have that command in the BWBasic interpreter in the first place.

  • Oliver Oliver posted a comment on ticket #9

    I understand. But the BWBasic version of FreeDOS 1.3 does not ship with a renum DOS command.

  • Paul Edwards Paul Edwards posted a comment on ticket #9

    I see that the executable isn't provided in the download folder though. You need to compile it yourself. Alternatively, there is a precompiled binary on the PDOS/386 hard disk image available from http://pdos.org - it is a win32 executable. It's also in customb.zip.

  • Oliver Oliver modified a comment on ticket #9

    Here's a picture of a short example: The example works in GW-BASIC. EDIT: I also added a screenshot of GW-Basic.

  • Paul Edwards Paul Edwards posted a comment on ticket #9

    You have run "renum" instead bwbasic. It is a separate executable.

  • Oliver Oliver modified a comment on ticket #9

    Here's a picture of a short example: The example works in GW-BASIC.

  • Oliver Oliver posted a comment on ticket #9

    Here's a picture of a short example:

  • Paul Edwards Paul Edwards posted a comment on ticket #9

    Hi Oliver. I'm a bit confused. Are you aware that there is already a renum command shipped with bwbasic? I'm not sure how to use it, but it's there. Are you saying it is insufficient for what you are trying to do? If so, it would be good if you could explain what is wrong with it.

  • Oliver Oliver created ticket #9

    Please add the RENUM command for code with line numbers

  • Oliver Oliver created ticket #12

    BWBasic 3.2 freezes after entering run#

  • AF5NE AF5NE posted a comment on ticket #8

    My apologies for the late response -- I am not often online. If you would be so kind, please try this: gcc -D_SVID_SOURCE -o bwbasic -lm bw*.c

  • AF5NE AF5NE posted a comment on ticket #10

    My apologies for the late response -- I'm not often online. Please remove the trailing semicolon. OLD: while (line_skip_seperator (l)); NEW: while (line_skip_seperator (l))

  • AF5NE AF5NE posted a comment on ticket #7

    Daniel, My apologies for the late response -- I am not often online. If you would be so kind, please try this: gcc -D_SVID_SOURCE -o bwbasic -lm bw*.c

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #8

    Wow! Could you share your source code with these changes? I have created a GitHub repository and uploaded all available versions one by one there, for historical purposes. In addition to making it easier to compare changes, using diff. Take a look, you may like it. I made a mistake in my GitHub repository and made your version 3.20f available in the Releases section as if it were version 3.20 of Howard S. Wulf (a.k.a. AF5NE). I know that Howard S. Wulf was working on a 3.30 version, but never released....

  • KenUnix KenUnix posted a comment on ticket #8

    Daniel - Condensed change log (3.20c-g): Functional updates: Fix memory leaks in function handling Make HELP & EDIT available in ALL VERSIONs. All files are closed when variables are cleared: NEW & RUN Fix LSET & RSET so they fill the complete field length LINE INPUT now reads whitespace correctly Greeting changed to reflect new contributions Renum was much improved but still fails in some situations. Renum complete rewrite to renum2 Prevent random seeks with BINARY mode files. This makes it compatible...

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #6

    Hey Howard, can you share the code for bwbasic 3.30? Also, FYI, I have created a GitHub repository: https://github.com/nerun/bwbasic. If you want access, let me know.

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #8

    @KenUnix, Have you changed anything in the code? What are the differences from 3.20 in Files section (2017) tô yours 3.20f? What you have changed in renum2? There's any changelog.gz?

  • Paul Edwards Paul Edwards posted a comment on ticket #7

    What error did you get? You might need to put the “-lm” at the end. Can you try that? I am aware that you got a more complicated procedure to work. BFN. Paul. From: Daniel D. Rodrigues Sent: Sunday, February 6, 2022 4:17 AM To: [bwbasic:bugs] Subject: [bwbasic:bugs] Re: #7 Compilation failure. gcc -o bwbasic -lm bw*.c Didn't work for me. Using gcc 10.2.1 and bwbasic 3.20. [bugs:#7] Compilation failure. Status: open Group: v1.0 (example) Labels: compilation Created: Mon Mar 26, 2018 01:44 PM UTC by...

  • Daniel D. Rodrigues Daniel D. Rodrigues created ticket #11

    New and updated bwbasic package for Linux Debian Amd64

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #8

    @KenUnix, worked like a charm! I've dug around in the guts of bwBASIC enough to know stuff about it. The simple answer is that bwBASIC is not a "shell" in the sense that "BASH" or just plain "SH" are. Its a BASIC interpreter. It runs BASIC programs. You can execute shell commands from it with the "SHELL" function. So you would do something like this: bwBASIC: shell "ls" Or if you want to capture the exit code and do something with it, you use the SHELL() function, like this: x = shell("ls") I've...

  • KenUnix KenUnix posted a comment on ticket #8

    I've dug around in the guts of bwBASIC enough to know stuff about it. The simple answer is that bwBASIC is not a "shell" in the sense that "BASH" or just plain "SH" are. Its a BASIC interpreter. It runs BASIC programs. You can execute shell commands from it with the "SHELL" function. So you would do something like this: bwBASIC: shell "ls" Or if you want to capture the exit code and do something with it, you use the SHELL() function, like this: x = shell("ls") I've not played with v2 so I can't speak...

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #8

    Why shell commands are not working? In bwbasic 2.20 i can use ls -l *.bas: bwBASIC: ls bwbasic bwbasic-3.20.zip renum2 In 3.20f i can't: bwBASIC: ls ILLEGAL COMMAND AFTER LINE NUMBER: 1 ls bwBASIC: ls -l *.bas ILLEGAL COMMAND AFTER LINE NUMBER: 1 ls -l *.bas

  • Daniel D. Rodrigues Daniel D. Rodrigues modified a comment on ticket #6

    DELETED

  • Daniel D. Rodrigues Daniel D. Rodrigues modified a comment on ticket #6

    Why shell commands are not working? In bwbasic 2.20 i can use ls -l *.bas: bwBASIC: ls bwbasic bwbasic-3.20.zip renum2 In 3.20f i can't: bwBASIC: ls ILLEGAL COMMAND AFTER LINE NUMBER: 1 ls bwBASIC: ls -l *.bas ILLEGAL COMMAND AFTER LINE NUMBER: 1 ls -l *.bas

  • Daniel D. Rodrigues Daniel D. Rodrigues modified a comment on ticket #6

    Why shell commands are not working? In bwbasic 2.20 i can use ls -l *.bas: bwBASIC: ls bwbasic bwbasic-3.20.zip renum2 In 3.20f i can't: bwBASIC: ls ILLEGAL COMMAND AFTER LINE NUMBER: 1 ls bwBASIC: ls -l *.bas ILLEGAL COMMAND AFTER LINE NUMBER: 1 ls -l *.bas

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #6

    Why shell commands are not working? In bwbasic 2.20 i can use ls -l *.bas: bwBASIC: ls bwbasic bwbasic-3.20.zip renum2 In 3.20f i can't: bwBASIC: ls ILLEGAL COMMAND AFTER LINE NUMBER: 1 ls bwBASIC: ls -l .bas ILLEGAL COMMAND AFTER LINE NUMBER: 1 ls -l .bas

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #10

    Sorry, I got it now. I read Clement T. Cole's comment and found the solution: First: $ gcc -c -I. -DHAVE_STRING=1 -DHAVE_STDLIB=1 -DHAVE_UNISTD=1 -DHAVE_RAISE=1 -g -ansi -DHAVE_UNIX bw*.c Second: $ gcc bw*.o -lm -o bwbasic Run: ./bwbasic Thank you @JohnT, without you i would never see the solution!

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #10

    I am using this command, from INSTALL file: gcc -o bwbasic -lm -ansi -pedantic -Wall -Werror bw*.c

  • JohnT JohnT modified a comment on ticket #10

    Daniel, are you building with a makefile or with the commandline? Here's the compilation from my build with makefile, BWBasic 3.20 and I think gcc 10.2.1. gcc -c -I. -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING=1...

  • JohnT JohnT posted a comment on ticket #10

    Daniel, are you building with a makefile or with the commandline? Here's the compilation from my build with makefile, BWBasic 3.20 and I think gcc 10.2.1. gcc -c -I. -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_STRING=1...

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #7

    gcc -o bwbasic -lm bw*.c Didn't work for me. Using gcc 10.2.1 and bwbasic 3.20.

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #8

    I got the same error.

  • Daniel D. Rodrigues Daniel D. Rodrigues posted a comment on ticket #10

    Hi there, By Feb 5, 2022: Using gcc v10.2.1 and bwbasic 3.20, i got this error too. $ gcc -o bwbasic -lm -ansi -pedantic -Wall -Werror bw*.c bwb_fnc.c: In function ‘IntrinsicFunction_execute’: bwb_fnc.c:966:13: error: implicit declaration of function ‘putenv’; did you mean ‘getenv’? [-Werror=implicit-function-declaration] 966 | if (putenv (A) == -1) | ^~~~~~ | getenv cc1: all warnings being treated as errors bwb_var.c: In function ‘bwb_COMMON’: bwb_var.c:113:9: error: this ‘while’ clause does not...

  • Paul Edwards Paul Edwards posted a comment on discussion Open Discussion

    bwbasic is a standard C90 program, so it is not appropriate for bwbasic documentation to mention anything about CMS in particular. It is the C library documentation that should take it to the next step. Or as you can see below with the double quotes, it is CMS that needs to document it. Yes, the interactive environment is included. Here is Sixpack 1.2 running: 08:10:08 /(0009) bwbasic 08:10:08 Bywater BASIC Interpreter/Shell, version 2.50 08:10:08 Copyright (c) 1993, Ted A. Campbell 08:10:08 Copyright...

  • David Wade David Wade posted a comment on discussion Open Discussion

    Is there any documentation on how its set up for CMS. Is the interactive environment included. It just seems to want to run a program and exit.

  • Paul Edwards Paul Edwards posted a comment on discussion Open Discussion

    Hi Ken. Thanks for the link. You’re probably going to put out versions faster than me (I’m still waiting for Howard), so I would suggest you put your executables there, and I provide a link from Sourceforge to your alternate distribution. Happy with that? BFN. Paul. From: KenUnix Sent: Wednesday, December 22, 2021 9:10 AM To: [bwbasic:discussion] Subject: [bwbasic:discussion] Updated BWBASIC Paul, Please see link below for the complete source for the latest BWBASIC: https://yeolpishack.net/repos/ChipMaster/bwBASIC...

  • KenUnix KenUnix posted a comment on discussion Open Discussion

    Paul, Please see link below for the complete source for the latest BWBASIC: https://yeolpishack.net/repos/ChipMaster/bwBASIC This site is readable by anyone. Ken

  • Paul Edwards Paul Edwards posted a comment on discussion Open Discussion

    Hi Ken. It is a condition of the bwbasic license that any binaries need to have accompanying source code. I haven’t seen any source code. And then I need to review that source code. And then I need to merge it. I’m not promising to cut a new release based on these changes though. BFN. Paul. From: KenUnix Sent: Monday, December 20, 2021 3:15 AM To: [bwbasic:discussion] Subject: [bwbasic:discussion] Re: Reading from STDIN in Linux Paul I supplied binaries for multiple OS from Linux to Windows to Mac....

  • KenUnix KenUnix posted a comment on discussion Open Discussion

    Paul I supplied binaries for multiple OS from Linux to Windows to Mac. What exactly do you need to add these on SFN under files? Categorized for Linux, Windows, and the Mac (new). renum2 is a complete rewrite of renum fixing many short comings. And it actually works! Ken On Thu, Dec 16, 2021, 10:04 PM Paul Edwards kerravon86@users.sourceforge.net wrote: Hi Ken. I didn’t see any source code to merge. Note that the latest (beta) source code is in custom.zip at http://pdos.org and contains your previous...

  • Paul Edwards Paul Edwards posted a comment on discussion Open Discussion

    Hi Ken. I didn’t see any source code to merge. Note that the latest (beta) source code is in custom.zip at http://pdos.org and contains your previous changes. BFN. Paul. From: KenUnix Sent: Friday, December 17, 2021 11:39 AM To: [bwbasic:discussion] Subject: [bwbasic:discussion] Reading from STDIN in Linux Paul, I have uploaded into the support area new versions of bwbasic and a new renum2 which replaces renum. renum2 was a total rewrite addressing short comings of renum. Your will also find a bwbasic...

  • Ted A. Campbell Ted A. Campbell posted a comment on ticket #5

    Delighted to hear bwBASIC is being updated — I was the original author, /ted — Ted A. Campbell tc@tedcampbell.com On Dec 16, 2021, at 1:29 PM, KenUnix kenmartin@users.sourceforge.net wrote: [support-requests:#5] https://sourceforge.net/p/bwbasic/support-requests/5/ Updated and new bwbasic Status: open Group: v1.0 (example) Labels: new Created: Thu Dec 16, 2021 07:29 PM UTC by KenUnix Last Updated: Thu Dec 16, 2021 07:29 PM UTC Owner: nobody Attachments: bwbasic.exe https://sourceforge.net/p/bwbasic/support-requests/5/attachment/bwbasic.exe...

  • KenUnix KenUnix posted a comment on discussion Open Discussion

    Paul, I have uploaded into the support area new versions of bwbasic and a new renum2 which replaces renum. renum2 was a total rewrite addressing short comings of renum. Your will also find a bwbasic for the Mac OS X Amd64 and Windows 7 32 bit up to Windows 11 64bit i386, Linux Arm64 and Linux Amd64. These changes and additions will bring the version up to 3.20f and can be placed in the files area. Ken

  • KenUnix KenUnix created ticket #10

    Updated and new bwbasic for Linux Arm

  • KenUnix KenUnix created ticket #9

    Updated and new bwbasic for Linux Arm64

  • KenUnix KenUnix created ticket #8

    New and updated bwbasic for Linux Amd64

  • KenUnix KenUnix created ticket #7

    new updates bwbasic for Linux i386

  • KenUnix KenUnix created ticket #6

    new bwbasic for Mac OS X Amd64

  • KenUnix KenUnix created ticket #5

    Updated and new bwbasic

  • KenUnix KenUnix posted a comment on discussion Open Discussion

    Initial version for Apple OS X Amd64. Linux versions to follow.

  • KenUnix KenUnix posted a comment on discussion Open Discussion

    Updated and New for bwbasic bwb3.20f bwbasic should run on all Windows platforms Windows 7 32bit up to Windows 11 64bit. renum2 is a complete rewrite of renum to improve it's operation. Try: renum2 --help Others to follow for Linux and Apple OS X for Amd64.

  • Paul Edwards Paul Edwards posted a comment on discussion Open Discussion

    Hi Ken. Thanks for contributing work to bwbasic Are the things in bwbasic-tests*.zip here: https://sourceforge.net/projects/bwbasic/files/bwbasic/version%203.20/ suitable? Note that I don’t have any BASIC programs myself. I’m a C programmer, not a BASIC programmer. BFN. Paul. From: KenUnix Sent: Thursday, August 19, 2021 10:28 AM To: [bwbasic:discussion] Subject: [bwbasic:discussion] Re: Reading from STDIN in Linux Paul, I have been doing a lot of work on the renum program. It has a lot of short...

  • KenUnix KenUnix posted a comment on discussion Open Discussion

    Paul, I have been doing a lot of work on the renum program. It has a lot of short comings. Most all have been corrected. You can actually renumber a bwbasic program by specifying starting line # and increment. Great when you run out of line numbers or to make the listing look neater. It now handles among others ON X GOTO or GOSUB x,xx,xx,xx. PRINT. among others. I am trying to validate it's operation. You know look for bugs. Can you email me with attachments of complex or simple bwbasic programs...

  • KenUnix KenUnix posted a comment on discussion Open Discussion

    Paul, I have been doing a lot of work on the renum program. It has a lot of short comings. Most all have been corrected. You can actually renumber a bwbasic program by specifying starting line # and increment. Great when you run out of line numbers or to make the listing look neater. It now handles among others ON X GOTO or GOSUB x,xx,xx,xx. PRINT. among others. I am trying to validate it's operation. You know look for bugs. Can you email me with attachments of complex or simple bwbasic programs...

  • David Wall David Wall modified a comment on discussion Open Discussion

    Sorry Paul - I thought I was entering in the GnuCOBOL discussion. I was only trying to contact kenunix specifically. David

  • David Wall David Wall posted a comment on discussion Open Discussion

    Sorry Paul - I thought I was entering in the GnuCOBOL discussion. I was only trying to contact kenunix specifically. David Paul Edwards wrote: Hi David. I’m confused as to why the subject is GnuCOBOL but this is bwbasic. What is the relationship between these two things? Thanks. Paul. From: David Wall Sent: Tuesday, August 10, 2021 7:15 PM To: [bwbasic:discussion] Subject: [bwbasic:discussion] Scripts for building GnuCOBOL under Visual C. Particularly for kenunix - do you still have a copy of the...

  • Paul Edwards Paul Edwards posted a comment on discussion Open Discussion

    Hi David. I’m confused as to why the subject is GnuCOBOL but this is bwbasic. What is the relationship between these two things? Thanks. Paul. From: David Wall Sent: Tuesday, August 10, 2021 7:15 PM To: [bwbasic:discussion] Subject: [bwbasic:discussion] Scripts for building GnuCOBOL under Visual C. Particularly for kenunix - do you still have a copy of the scripts you and cdg used to banter about. I'm particularly interested in his build script for 3.1 to see if I can mod it for 4.0. Have you got...

  • David Wall David Wall posted a comment on discussion Open Discussion

    Particularly for kenunix - do you still have a copy of the scripts you and cdg used to banter about. I'm particularly interested in his build script for 3.1 to see if I can mod it for 4.0. Have you got anything like that also - i'd be interested. It seems - building under Mingw/msys - like I do - tends to make the make check & make test (nist) tests think they're running under a linux flavour - and thus possibly give false results for me (under windows). Just a thought.

  • Paul Edwards Paul Edwards posted a comment on discussion Open Discussion

    Hi Ken. I only compile under Windows, not Linux. Yes, I am the current maintainer. Note that the previous fixes you sent me have been incorporated into the source code but not yet formally released. However, there is a beta release available with your fixes (plus other things) which can be found in custom.zip from http://pdos.org Please let me know if you need anything else to debug the issue. Thanks. Paul. From: KenUnix Sent: Saturday, August 7, 2021 9:02 AM To: [bwbasic:discussion] Subject: [bwbasic:discussion]...

  • KenUnix KenUnix posted a comment on discussion Open Discussion

    Paul, Sorry I missed your message. That zip file is complete. Thanks. On Thu, Aug 5, 2021 at 6:33 PM Paul Edwards kerravon86@users.sourceforge.net wrote: Hi Ken. The link points to two zip files and one executable. The zip file that I named (the last file), contains the complete source code (I just downloaded it to verify): C:\Users\kerra\Downloads>unzip -v bwbasic-3.20.zip | grep -i bwb_ 230584 Defl:X 29723 87% 2017-06-08 11:20 92258688 bwb_cmd.c 43588 Defl:X 6868 84% 2017-06-08 11:20 024193c6 bwb_cnd.c...

1 >
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.