In a Haskell tutorial I ran across the following code:
do [...]
let atom = [first] ++ rest
return $ case atom of
Note that the let expression does not have an in block. What is the scope of such a let expression? The next line?
|
Simply put, it's scoped "from where it's written until the end of the Note that within a According to http://www.haskell.org/haskellwiki/Monads_as_computation#Do_notation , it is interpreted as follows:
|
|||
|
|
|
The scope is the rest of the See ยง3.14 of the Haskell Report (specifically, the fourth case in the translation block). (Yes, this is the section about |
|||||
|
[first] ++ restis quite odd, too, should befirst : rest– configurator Mar 20 '12 at 19:03