stock IsLettersOnly(string[]){ for(new i = 0; i < strlen(string); i ++) if(tolower(string[i]) < 97 || tolower(string[i]) > 122) return 0; return 1;}