home *** CD-ROM | disk | FTP | other *** search
- /* Returns numeric codes of Ascii letters */
- /* written by Jack Petrilli and released to the public domain */
- cls
- say " "
- say "Enter a letter to see it's numeric code in decimal and hex"
- parse pull entry
- a=c2d(entry)
- say " "
- say entry "= decimal "a
- say " "
- b=d2x(a)
- say b "in hexadecimal"