There was an error while loading. Please reload this page.
The UCASE$ function returns an all-uppercase version of a STRING.
result$ = UCASE$(text$)
The following code guarantees that all letter key entries are capitalized:
PRINT "Do you want to continue? (y/n)" DO K$ = UCASE$(INKEY$) LOOP UNTIL K$ = "Y" OR K$ = "N"
Navigation