home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 18 REXX / 18-REXX.zip / REXXCH03.ZIP / ADD2NUM.CMD < prev    next >
OS/2 REXX Batch file  |  1991-03-11  |  224b  |  7 lines

  1. /* the sum of two numbers */
  2. say "Type a number:"
  3. pull first                      /* waits for entry */
  4. say "Type another number:"
  5. pull second                     /* waits for entry */
  6. say "The sum is" first + second
  7.