home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / 014r / rb158.zip / RB58.DOC
Text File  |  1985-08-20  |  1KB  |  42 lines

  1.  
  2.  
  3. RB Command                                              Version 1.58
  4. ----------                                              Aug 20, 1985
  5.  
  6. Purpose:  Convert an interpreted BASIC file to an ASCII format
  7.           file.
  8.  
  9. Syntax:   RB  filename.bas  newfile.bas
  10.  
  11. Remarks:  The two file names are required. The first specifies
  12.           the name of an interpreted BASIC program, the second
  13.           is the name to be given to the new ASCII file.
  14.  
  15.           Floating point numbers are not rounded but no precision
  16.           is lost.
  17.  
  18.           RB accomplishes the same task as using the BASIC interpreter
  19.           to save a BASIC file in ASCII form, for example:
  20.  
  21.                 basic
  22.                 load"myprog
  23.                 save"myprog.asc",a
  24.                 system
  25.  
  26.                 -or-
  27.  
  28.                 rb myprog.bas myprog.asc
  29.  
  30.           The reasons for using RB are:
  31.  
  32.                 - the interpreter is not needed (not everyone gets
  33.                   a BASIC interpreter with their system)
  34.                 - RB is much faster
  35.                 - allows using BATch files for use with compilers
  36.  
  37.           Written by Vernon D. Buerg for the IBM PC, and compatibles,
  38.           using DOS 2.0 or later. For private, personal use only.
  39.           Not for sale or higher.
  40.  
  41.  
  42.