×
Menu
Index

ASC Subroutine

 
Usage:
n = ASC(s)
 
Description:
The ASC subroutine returns the ASCII value of the first character in the string s.
 
Example:
sub main()
   // Print ASCII value of "A"
   printl(ASC("A"))
end sub