09-02-2023, 01:50 PM
Thanks for the links
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.
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.