home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 3
/
CDASC03.ISO
/
news
/
1601
/
strtest.bas
< prev
next >
Wrap
BASIC Source File
|
1993-04-01
|
203b
|
13 lines
' Test the left$() and right$() functions
test$ = "Here is my test string."
for i = -5 to len(test$)
print left$(test$, i)
print right$(test$, i)
next i