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

  1. /* the sum of two numbers, this time    */
  2. /* typed at the command prompt          */
  3. arg first second        /* collects entries */
  4. say "The susm is" first + second
  5.