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)