Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Updating The Single Most Influential Book of the BASIC Era
#1
https://blog.codinghorror.com/updating-t...basic-era/


[Image: basic-books.png]
grymmjack (gj!)
GitHubYouTube | Soundcloud | 16colo.rs
Reply
#2
   

So much easier to do it first in QB64
b = b + ...
Reply
#3
in 10 memory safe GPSL ...what?
that is insulting  Angry
answer...in win32 
Code: (Select All)
SendMessage(101, *fuc*Off*,wMo**,**fuc**)
Reply
#4
(08-30-2023, 08:31 PM)aurel Wrote: in 10 memory safe GPSL ...what?
that is insulting  Angry
answer...in win32 
Code: (Select All)
SendMessage(101, *fuc*Off*,wMo**,**fuc**)

LOLOL!!!
grymmjack (gj!)
GitHubYouTube | Soundcloud | 16colo.rs
Reply
#5
Quote:So let's do this. Join us on Github...

* JavaScript

* C#

For JavaScript, blessed be dbox and others that spared us from that and we have QBJS. Big Grin

C#, a thousand times no! M$ sucks! They should have never been allowed to take control of BASIC. Oh well we would been using True Basic today if it weren't for QuickBASIC but... (grumble)
Reply
#6
I think there was a link somewhere that had the code for these typed out for copy/paste. 

Does anyone have a link?
b = b + ...
Reply
#7
(08-31-2023, 12:56 PM)bplus Wrote: I think there was a link somewhere that had the code for these typed out for copy/paste. 

Does anyone have a link?

https://www.roug.org/retrocomputing/lang...basicgames

Individual files and an 'all-in-one' zip file.

But wait... there's more...

http://www.vintage-basic.net/games.html

I hope that this helps...

J
May your journey be free of incident. Live long and prosper.
Reply
#8
Thumbs Up 
(08-31-2023, 08:20 PM)johnno56 Wrote:
(08-31-2023, 12:56 PM)bplus Wrote: I think there was a link somewhere that had the code for these typed out for copy/paste. 

Does anyone have a link?

https://www.roug.org/retrocomputing/lang...basicgames

Individual files and an 'all-in-one' zip file.

But wait... there's more...

http://www.vintage-basic.net/games.html

I hope that this helps...

J

The first one is what I wanted thanks!
b = b + ...
Reply
#9
No problemo... happy to help...
May your journey be free of incident. Live long and prosper.
Reply
#10
Thanks for the links Smile

Quite a lot of these work out of the box with QB64PE. Any `DEF FN` needs to be turned into a `FUNCTION` however.

Like:

`5 DEF FNA(Z)=30*EXP(-Z*Z/100)`

can become:
```
' 5 DEF FNA(Z)=30*EXP(-Z*Z/100)
FUNCTION FNA(Z)
  FNA = 30*EXP(-Z*Z/100)
END FUNCTION
```

That way you comment out the `DEF FN` and create a `FUNCTION` that has the same name, and just put the equals as the return of the function.

This is an interesting collection for sure.
grymmjack (gj!)
GitHubYouTube | Soundcloud | 16colo.rs
Reply




Users browsing this thread: 11 Guest(s)