Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Updating The Single Most Influential Book of the BASIC Era
#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


Messages In This Thread
RE: Updating The Single Most Influential Book of the BASIC Era - by grymmjack - 09-02-2023, 01:50 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Rotating Sphere in Visual Basic eoredson 2 654 02-19-2026, 01:56 PM
Last Post: bplus
  Basic language jam kelvinhin 2 354 12-27-2025, 02:08 AM
Last Post: kelvinhin
  Deep Basic aurel 5 1,331 09-28-2025, 04:41 PM
Last Post: aurel
  MS 6502 BASIC Unseen Machine 0 415 09-16-2025, 08:01 PM
Last Post: Unseen Machine
  Basic with a database (Linux only) bigriverguy 2 1,252 12-10-2023, 08:45 PM
Last Post: bigriverguy

Forum Jump:


Users browsing this thread: 1 Guest(s)