Quote:
> Hi
> When you have a print command and then another print comand how do
> youu get a new page between the two print commands?
> ie... cls
> print"hi"
> ????????????????????-this is where the new page should start
' Insert a loop to keep the first page in view
DO
LOOP UNTIL INKEY$ = " "
This will keep "hi" on the screen until user presses the spacebar
to break the loop.
Then follow the loop with:
CLS ' clears "hi" from screen
Quote:
> print"yo"
> Thanks, Shawn Gibson :)
Altogether:
CLS
PRINT "HI"
DO
LOOP UNTIL INKEY$ = " "
CLS
PRINT "YO"