I want to have access to a let-binding within a following where-clause.
Why does this Code fail? And even more important: How do I get it to work?
test bar = let baz = bar - 1 in
foo where
foo = baz`
it says:
Not in scope: baz'
Perhaps you meant
bar'
You can think of a where as another way to write a let around the right hand sides that belong to a single match.
In your case, it is quite easy, as there is only a single right hand side. Hence, you wrote:
This is not going to work. I recommend to stick with either where or let, most idiomatic would be:
Apart from that, when you only define
baz
thenbaz'
will never be in scope.