
5 Apr
2006
5 Apr
'06
7:33 p.m.
On 4/5/06, Michael Goodrich
Looks like my calulation involves a self referential set of definitions.
Is Haskell not able to deal with a self referential set of definitions?
Yes, it is, but not if that definition doesn't evaluate to a "proper" value. For example: main = do print x where x = 3 * x^2 What do you expect this to do? It may help if you toss us the offending code.