[Haskell-cafe] How to do this in FP way?

Magicloud Magiclouds magicloud.magiclouds at gmail.com
Sun Jun 15 22:31:22 EDT 2008


Hello,
    I am getting familiar with FP now, and I have a "program design" kind of
question.
    Say I have something like this in C:
static int old;
int diff (int now) { /* this would be called once a second */
  int ret = now - old;
  old = now;
  return ret;
}
    Because there is no "variable" in Haskell. So how to do this in a FP
way?

Thanks.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.haskell.org/pipermail/haskell-cafe/attachments/20080616/394a4f58/attachment.htm


More information about the Haskell-Cafe mailing list