Search found 19 matches

by basicgames
Wed Aug 23, 2023 10:43 am
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

I am wondering if anyone has tried the new version. Feedback about the new PRINT output system for the PRINT command would be helpful. It's easy to try. Just run some of the math/science examples. The result should feel a bit like Just Basic.
by basicgames
Thu Aug 03, 2023 9:18 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

In the latest update for Craft Basic to version 1.6, there's new keywords, examples, and features. ​ The TAB keyword works along with the COMMA, QUOTE, and NEWLINE keywords for printing tabs in the output window. Arrays may now be dimmed with multi line lists. The recursion limit was raised. This ab...
by basicgames
Thu Jul 06, 2023 8:34 am
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

Craft Basic is continuing to mature. With each update comes fixed problems, new features, and more examples. The project is stable and has been tested on Windows 10 and 11. Any serious programming language is always under development and will be updated accordingly. Craft Basic is a programming lang...
by basicgames
Thu Jun 29, 2023 8:40 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

Craft Basic has been updated to version 1.5

Here's some Youtube videos demonstrating running examples.

15 Puzzle Game
https://youtu.be/pLpXnLFn9qs

Attractive Numbers
https://youtu.be/73LsnKmiZrs

Prime Decomposition
https://youtu.be/rMIjreP_zho
by basicgames
Tue Mar 28, 2023 4:37 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

Right. Kinda swamped ATM with the passing of a close relative, will see what I can do in the near future... My condolences. I understand. I just took a stab at v1.3, and I still encounter the black screen problem with all the GUI examples. It could be something specific with my system, but unfortun...
by basicgames
Sun Mar 26, 2023 11:28 am
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

I do not mind, although I would like to humbly request a quick review of the latest version as I have made many improvements and consider it to be stable. As far as the not working on Windows 10 thing? I don't know. It works on the ones I tested. Oldergeeks uploaded it as well and have screenshots o...
by basicgames
Thu Mar 23, 2023 5:06 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

​I have released version 1.3 to fix another issue with the for loops. They should be even more accurate and stable now. The issue was happening with things such as FOR i = -1 TO 0 STEP -1. No wonder. There's now a QUOTE keyword to go along with COMMA and NEWLINE for output formatting. I also "i...
by basicgames
Wed Mar 08, 2023 7:28 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

Version 1.2 has been released. I had to rush this one out to fix a critical, but uncommon bug with for/next loops. A new example called eulermethod.bas has been included. 'euler method example precision 4 let s = 2 gosub euler let s = 5 gosub euler let s = 10 gosub euler end sub euler cls cursor 1, ...
by basicgames
Tue Feb 28, 2023 10:43 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

Craft Basic version 1.1 released Many things have changed for the better with the new 1.1 version. The code has been cleaned up and optimized. Bugs have been removed. Important changes include the syntax of functions. The functions will work much more like your standard BASIC now. Also, the image h...
by basicgames
Wed Feb 22, 2023 2:11 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

The old site links to the new.

I updated the archive entry.
by basicgames
Wed Feb 22, 2023 3:16 am
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

Another update has been uploaded. Also, Craft Basic has a new home website at http://www.lucidapogee.com

The new update includes versioninfo, manifest, and some bug fixes.
by basicgames
Sun Feb 19, 2023 7:23 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

An update has been uploaded. New features include: newly added commands: for, step, next, and else The break command now works for do and for loops. A break by itself targets do loops and with a variable, it target's for loops. If/endif blocks may now use else. The IDE search has been upgraded. It n...
by basicgames
Sat Feb 18, 2023 9:50 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

That's interesting. The text is also based in graphics primitives and is drawn to the window (except stac text forms which are also supported). I'm glad you got the math stuff working. Perhaps there's a setting in your configuration of Windows that is preventing the graphics. Maybe there's some a 32...
by basicgames
Sat Feb 18, 2023 8:16 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

I wonder why. I tried it on two Windows 10 computers so far and it worked well . Although it has been developed on 95 and XP. It is made with Emergence Basic, a 32 bit compiler from Ionicwind.com and uses graphic primitives and windows api gui. It doesn't use DirectX, but draws directly to the windo...
by basicgames
Sat Feb 18, 2023 4:25 pm
Forum: Portable Freeware Development
Topic: Craft Basic [programming interpreter]
Replies: 25
Views: 22787

Re: Craft Basic [programming interpreter]

Thank you for allowing me to share my program. The forms.bas example is really bare bones and just shows how to set up a window. It should show a black colored screen and a yellow/blue button thatt says exit. It should also print the mouse coordinates in red/blue at the top left of the window. Are y...