home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 3
/
CDASC03.ISO
/
news
/
1601
/
ascii.bas
next >
Wrap
BASIC Source File
|
1993-04-01
|
332b
|
16 lines
' This program ask for a string and then
' displays a list of ASCII codes for each
' character in the entered string
input "Please enter a string >"; entry$
for index = 1 to len(entry$)
result$ = result$ + str$(asc(mid$(entry$,index,1))) + chr$(13)
next index
print result$