Newbie question on "statefullness"

Ashley Yakeley ashley@semantic.org
Sun, 11 Aug 2002 23:48:06 -0700


At 2002-08-11 17:36, Alex Peake wrote:

>I want to implement something like the C idea of:
>n += i
>
>So how does one doe this in Haskell?

  do {
    val <- readIORef n;
    writeIORef n (val + i);
  };


-- 
Ashley Yakeley, Seattle WA