GetAt-func
Returns a single character specified by an index number.
int GetAt(string str$, int index)
str
index
Return a char containing the character at the specified position in the string.
i=GetAt("sss abc def", 5); i=; //should print out 97, a's ASCII code