home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ob140os2.zip / CATDEMO.B < prev    next >
Text File  |  1997-09-12  |  106b  |  9 lines

  1. * This shows string concatenation
  2.  
  3.  DIM A$ AS STRING*20
  4.  
  5.  A$="Testing..."
  6.  A$=A$+"123"
  7.  PRINT A$
  8.  
  9.