C/C++
eric.lst
Associated article: REXX and the OS/2 Workplace Shell
Tags: C/C++ Tools Design
_REXX and the OS/2 Workplace Shell_
by Eric Giguere
Example 1: A simple REXX program to add the first N integers.
n = arg( 1 )
t = 0
do i = 1 to n
t = t + i
end
say "Sum from 1 to" n "is&...


