home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 8
/
CDASC08.ISO
/
VRAC
/
LIBERTY.ZIP
/
STRTEST.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1993-08-31
|
203 b
|
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