Convert the strings in multi-string valued global variable to lower case.
gtolower(varname)
varname - type: str
Old-style function slated for replacement.
@CODE
G("strs") = "abc";
G("strs")[1] = "def";
gtolower("strs");
"output.txt" << G("strs") << "\n";