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

  1. * This shows the use of command line swithes and conditional compile
  2. * Try compiling: ob_sw cmddemo.b and then running
  3. * Try compiling: ob_sw cmddemo.b switch=1 and then running
  4.  
  5. #SET switch=0
  6.  
  7. #IF switch=0
  8.  PRINT "There was no 'switch=1' when compiling me"
  9. #ELSE
  10.  PRINT "There was a 'switch=1' when compiling me"
  11. #ENDIF
  12.  
  13.