I've looked everywhere for this, and can't find a solid way to do it... I am making a simple number-guessing game, and want to display the number attempt the player is on, and a colon. For example, if it was the user's 5th attempt the screen would look like:
Attempt 5:
...and the user would be able to guess the number again. This is the code for the loop:
For(X, 1, 10
INPUT whatever X is, G
IF G>N
DISP "TOO HIGH!"
...and so on. How would I make the INPUT command display the value of X? Would I have to convert is to a string, or is there a better way?