I know Blitz will automatically resolve avriables into string format where needed
i.e.
but what about the other way around?
I have a problem with the following:
Now try the same but change test=10 to test=100.....
i.e.
integer=50 Text 100,200,"A Number: "+integer
but what about the other way around?
I have a problem with the following:
integer$="50" test=10 If test<integer Then answer$="LESS" If test=integer Then answer$="EQUAL" If test>integer Then answer$="MORE" Print answer$
Now try the same but change test=10 to test=100.....