home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 8 / CDASC08.ISO / VRAC / LIBERTY.ZIP / STRTEST.BAS < prev    next >
BASIC Source File  |  1993-08-31  |  203b  |  13 lines

  1.  
  2.  
  3.     ' Test the left$() and right$() functions
  4.  
  5.     test$ = "Here is my test string."
  6.  
  7.     for i = -5 to len(test$)
  8.  
  9.         print left$(test$, i)
  10.         print right$(test$, i)
  11.  
  12.     next i
  13.