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



Users browsing this thread: 6 Guest(s)