Name: Anonymous 2014-07-14 0:56
Just fixed an error with
where foo() modified count, in effect writing stuff into the incorrect location.
Haskell's lazy evaluation would have prevented that.
array[count++]= foo();
where foo() modified count, in effect writing stuff into the incorrect location.
Haskell's lazy evaluation would have prevented that.