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

  1. * This show the use of inline C code
  2.  
  3.  DIM A AS STRING*32
  4.  DIM B AS STRING*32
  5.  
  6.  A="This is a test"
  7.  B=" of C mixing"
  8.  
  9. #C
  10. puts(A);
  11. strcat(A,B);
  12. #ENDC
  13.  
  14. ;puts(A);
  15.  
  16.  PRINT A
  17.