if I try > fst(a, b) where a, b are undefined, I get the error that b is undefined. Even on trying snd(a, b) it is b that causes the error first. I have a background in imperative programming. I am wondering if this is some kind of laziness that I don't understand.
|
|
||||
|
I think FUZxxl's comment is absolutely correct. When I type into Hugs' repl:
This isn't a lazy/eager evaluation thing -- when Hugs checks to make sure that It's like in Java going:
And never saying what
To remedy this, you can either define
or
or
or a where statement
etc. Alternatively, define in some file called whatever (for example, "TestTuple.hs")
and in Hugs, go:
Although you note that you are using Hugs, just for reference, in GHCi, you can also define variables in the REPL like this:
|
||||
|
|
|
Here's what you will see:
As you can see, accessing an undefined element evaluates to an undefined value. Laziness allows us to avoid evaluating the entire structure, however,
Your comment suggests you might have forgotten to declare some specific variables, |
|||
|
|
I think your question was why is it complaining about b but not a, and that is because haskell evaluates arguments arbitrarily. That is, you never know which one is evaluated first. In your case, apparently, haskell evaluated b before a by chance and that's why it complains about b but not a. |
|||
|
|
fst (a,b)without defining eitheraorbbefore or did you typed something likefst (undefined, undefined)(undefinedis a special variable that is throws an exception upon evaluation)? In Haskell, anything must be defined when you are using it. Haskell is no scripting language. The compiler may check, whether the variables are existant in an arbitrary order. – FUZxxl Jun 25 '11 at 16:53