HLL

Harrison R. Ulrich hrulrich@conline.com
Thu, 26 Oct 1995 19:38:34 -0500


Hello list,

Which of the following do we prefer?

prog icomp;

var i, total;

proc test;
  begin
    i := 1;
    total := 0;
    while i <= 3 do
       total := total + 1;
       i := i + 1;
    od;
  output := total;
 end;
end.

OR

total Is #sumof 1 ... 3


Dick Ulrich (lets drive this home, what's the goal)