Line 160 a perfect opportunity to try out the _CONTINUE keyword for beyond QB4.5!
That code looks like it comes from GW BASIC or even before that (<1980's?)! Otherwise an IF THEN block might have been used instead of THEN (implied GOTO) 190. Of course that is pretty elegant if you HAVE to have line numbers :)
Line 160 a perfect opportunity to try out the _CONTINUE keyword for beyond QB4.5!
That code looks like it comes from GW BASIC or even before that (<1980's?)! Otherwise an IF THEN block might have been used instead of THEN (implied GOTO) 190. Of course that is pretty elegant if you HAVE to have line numbers :)
I had not seen but you have created a function thanks for the very good modification
FUNCTION fna (z)
fna = 30 * EXP(-z * z / 100)
END FUNCTION
it serves to learn
Line 160 a perfect opportunity to try out the _CONTINUE keyword for beyond QB4.5!