Code-func
This function is used to return a numeric code for the first character in input string.
int Code(string str$)
str
Return a numeric code.
int dd=code(abc); dd=; //returns 65 (it is same as code("ABC"), non-quoted string will be capitalized in Labtalk) dd=code("abc"); //returns 97, the numeric code of lowercase letter 'a'
Char