6 lines
171 B
Text
6 lines
171 B
Text
DIM s AS STRING * 9
|
|
s = "alphaBETA"
|
|
PRINT "The original string: " + s
|
|
PRINT ""
|
|
PRINT "Translated to lowercase: " + LCASE$(s)
|
|
PRINT "Translated to uppercase: " + UCASE$(s)
|