you could also have it so it would type out the question, word for word.
common shared question as string
question="What is the capital of Texas?"
WRITEQUESTION
'writequestion is the sub.
SUB writequestion
keypress = INKEY$
questionypos = questionypos + 1
questionxpos = 33
question2 = LEN(story)
question5% = 0
question3 = 0
DO
holding$ = keypress
IF questionypos = 22 THEN
questionypos = 4
questionxpos = 33
DO: LOOP UNTIL keypress <> ""
clearquestionbox
END IF
question3 = question3 + 1
question5% = question5% + 1
question4 = MID$(question, question5%, 1)
questionxpos = questionxpos + 1
IF question3 > 37 AND question3 < 45 AND question4 = " " THEN
questionypos = questionypos + 1
questionxpos = 33
question3 = 0
END IF
IF INKEY$ <> "" THEN
ELSE
FOR i& = 1 TO 55000
NEXT i&
END IF
LOCATE questionypos, questionxpos
PRINT question4
LOOP UNTIL question5% = question2
here's a small look at what each string/integer is.
question: this holds the question.
question2: this holds the length of the question.
question3: this holds the information on which letter the sub is working on.
question4: this will hold the actual letter. in the end of the sub, this will be printed, then the next letter after this, and so on.
question5: same as question3, except that this will permanently show the info: question3 will revert back to 0 once it gets too big. this will make certain that the information will never go over the screen.
i%: this will delay the computer for about 1/10th of a second. Maybe less if your computer is slower.
questionypos: this will tell you which column to put the letter. it will revert back to zero when it reaches the bottom of the text.
questionxpos: this will tell you which row to put the letter. it will revert back to 33 when it reaches the end of the screen.
I don't have the time to give a complete explanation, and i'm sure some of the more experienced guys will scour over my coding to find bugs and humiliate me.

hint: *sarcasm*
This is in now way for you to just copy it and paste it. I would prefer for you to take a look at it. break it down and find out how it works. i never had the time to comment it, so best of luck.