Re: Functional programming in Python

2001-05-20 Thread Ketil Malde
Manuel M. T. Chakravarty [EMAIL PROTECTED] writes: You want to be able to write f 1 2 + g 3 4 instead of (f 1 2) + (g 3 4) I do? Personally, I find it a bit confusing, and I still often get it wrong on the first attempt. The good thing is that the rule is simple to remember. :-)

RE: HUGS error: Unresolved overloading

2001-05-20 Thread Mark P Jones
Hi David, | Can anyone shed some light on the following error? Thanks in advance. | | isSorted :: Ord a = [a] - Bool | isSorted [] = True | isSorted [x] = True | isSorted (x1:x2:xs) | | x1 = x2 = isSorted (x2:xs) | | otherwise = False I'm branching away from your question, but