12-04-2022, 08:38 PM
Hey Everyone - I am getting some good feedback here, but this site is a little out of the way for me.
If you make a suggestion and I don't seem to see it, please send a short note to
hudson.ra@live.com
Put "TREK at QB64" in the title so I know to come look here. - No need to re-hash your post as I will come here to read it.
Is everyone running this in the browser in Basic Anywhere Machine?
The code will almost work in QB64 as well:
BAM does an automated conversion of numeric variables to strings when concatenating a variable to a string - QB64 would only need VAL$(numeric)
BAM:
n = 5
x$ = "There are "+n+" lights! "
vs QB64:
n = 5
x$ = "There are "+val$(n)+" lights!"
Anyway - Thanks for the input!
If you make a suggestion and I don't seem to see it, please send a short note to
hudson.ra@live.com
Put "TREK at QB64" in the title so I know to come look here. - No need to re-hash your post as I will come here to read it.
Is everyone running this in the browser in Basic Anywhere Machine?
The code will almost work in QB64 as well:
BAM does an automated conversion of numeric variables to strings when concatenating a variable to a string - QB64 would only need VAL$(numeric)
BAM:
n = 5
x$ = "There are "+n+" lights! "
vs QB64:
n = 5
x$ = "There are "+val$(n)+" lights!"
Anyway - Thanks for the input!