stock IsNumeric(const str[]){ new len = strlen(str); if(!len) return false; for(new i; i < len; i++) { if(!('0' <= str[i] <= '9')) return false; } return true;}