Asc-func
This function returns the ASCII code (decimal) for the first character in an input string. This function does the same thing as the code function.
int asc(string str$)
str
Returns the ASCII code for the first character.
aa = asc("$100"); aa = ; //returns 36, the ASCII code of character "$" bb$ = "Abc"; asc(bb$)=; //returns 65, the ASCII code of uppercase letter "A"