Lower-func
This function converts the string to lowercase.
string Lower(string str$)
str
Return the string that has been converted to lowercase.
string str1$ = "ABCDE"; string str2$ = Lower(str1$)$; str2$ = ;//should be "abcde";
Upper