
UCASE$ generates a new string that is the capitalized counterpart of a source string. All letters are converted to upper case. Digits and other characters are excluded from that conversion.
Prints a completely capitalized "Hello World"
outmode -2
let a$ = ucase$ ("Hello World")
print a$
Internally, the C-library function "toupper" is used. See also LCASE$.