[Haskell-cafe] indentation with let and do
David McBride
toad3k
Thu Oct 3 19:56:12 UTC 2013
Imagine if bar was a toplevel function
bar = case foo of
True -> " Foo";
False -> "Bar";
Keep in mind that indentation level starts at the function name, not at the
let keyword.
On Thu, Oct 3, 2013 at 2:31 PM, Corentin Dupont
<corentin.dupont at gmail.com>wrote:
> Hi the list,
> why do this function doesn't compile (parse error):
>
> test :: Bool -> IO ()
> test foo = do
> let bar = case foo of
> True -> "Foo";
> False -> "Bar"
> return ()
>
> while this one does (just adding one space in front of True and False):
>
> test :: Bool -> IO ()
> test foo = do
> let bar = case foo of
> True -> "Foo";
> False -> "Bar"
> return ()
>
>
> Thanks!!
> Corentin
>
> _______________________________________________
> Haskell-Cafe mailing list
> Haskell-Cafe at haskell.org
> http://www.haskell.org/mailman/listinfo/haskell-cafe
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.haskell.org/pipermail/haskell-cafe/attachments/20131003/73342a73/attachment.htm>
More information about the Haskell-Cafe
mailing list