Send Beginners mailing list submissions to
        beginners@haskell.org

To subscribe or unsubscribe via the World Wide Web, visit
        http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners
or, via email, send a message with subject or body 'help' to
        beginners-requ...@haskell.org

You can reach the person managing the list at
        beginners-ow...@haskell.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Beginners digest..."


Today's Topics:

   1. Re:  Where clause indentation (Wink Saville)


----------------------------------------------------------------------

Message: 1
Date: Sat, 21 Oct 2017 00:19:04 +0000
From: Wink Saville <w...@saville.com>
To: The Haskell-Beginners Mailing List - Discussion of primarily
        beginner-level topics related to Haskell <beginners@haskell.org>
Subject: Re: [Haskell-beginners] Where clause indentation
Message-ID:
        <cakk8iso5k1obqf2lo4zg+dtuu63epe_asyhafmz1nvfjym0...@mail.gmail.com>
Content-Type: text/plain; charset="utf-8"

Thanks Rebecca and Brody, I did some additional experimentation and, of
course indenting to under the "o" in "go" worked:

dividedBy :: Integral a => a -> a -> (a, a)
dividedBy num denom = go num denom 0
   where go n d count
                | n < d = (count, n)
                | otherwise = go (n - d) d (count + 1)

But under or before the "g" doesn't:

dividedBy :: Integral a => a -> a -> (a, a)
dividedBy num denom = go num denom 0
   where go n d count
              | n < d = (count, n)
              | otherwise = go (n - d) d (count + 1)


Oh and both the following work, at least for me on 8.2.1. Again the
critical part was the "|" past the "g" in "go", but the "body" of "where"
and "let" can be indented as little as one space, although it would be bad
form.

dividedBy :: Integral a => a -> a -> (a, a)
dividedBy num denom = go num denom 0
   where
 go n d count
   | n < d = (count, n)
   | otherwise = go (n - d) d (count + 1)


dividedBy' :: Integral a => a -> a -> (a, a)
dividedBy' num denom =
    let
 numerator = num
 denominator = denom
 go n d count
   | n < d = (count, n)
   | otherwise = go (n - d) d (count + 1)
    in go numerator denominator 0


So this make having to indent the "|" in a function seem doubly weird to
me, but so be it :)

Oh, and on the lastest version I
have, haskell-programming-1.0RC2-ereader.pdf,
the section Brody mentioned on page 40 seems to be on page 59 in the
subsection titled "Troubleshooting" underneath section 2.7 "Declaring
Variables.

For other novices the haskell wiki indenation page is helpful:
   https://en.wikibooks.org/wiki/Haskell/Indentation
There is even has an example that shows it's not always necessary to indent,
just that things need to be aligned.

On Thu, Oct 19, 2017 at 6:01 PM Brody Berg <brodyb...@gmail.com> wrote:

> I believe this is all covered starting on page 40 of the latest edition
> with examples just like Rebecca has shared.
>
> On Thu, Oct 19, 2017 at 17:35 Rebecca Li <rebecca...@kittyhawk.aero>
> wrote:
>
>> I believe for where (as well as with let, or any other special phrasing),
>> if you're putting something on the same line with it, the subsequent lines
>> have to begin after the end of the indentation of the word "where" or
>> "let".
>>
>> A version I got ghc to accept:
>>
>> dividedBy :: Integral a => a -> a -> (a, a)
>> dividedBy num denom = go num denom 0
>>   where go n d count
>>               | n < d = (count, n)
>>               | otherwise = go (n - d) d (count + 1)
>>
>> A similar example with let would be the following, where b lines up with
>> a
>> let a = blah
>>      b = blah'
>>
>> but this would not work since b is only one level indented, not matching
>> a.
>> let a = blah
>>  b = blah
>>
>> Hopefully the formatting goes through email..
>>
>>
>>
>> On Thu, Oct 19, 2017 at 5:13 PM, Wink Saville <w...@saville.com> wrote:
>>
>>> I created a file with the dividedBy example from Chapter 8.5 of "Haskell
>>> Programming from first principles" :
>>>
>>> dividedBy :: Integral a => a -> a -> (a, a)
>>> dividedBy num denom = go num denom 0
>>>   where go n d count
>>>       | n < d = (count, n)
>>>       | otherwise = go (n - d) d (count + 1)
>>>
>>>
>>> I get the following error when I load into ghci:
>>>
>>> $ ghci chapter8_5-IntegralDivision.hs
>>> GHCi, version 8.2.1: http://www.haskell.org/ghc/  :? for help
>>> Loaded GHCi configuration from /home/wink/.ghci
>>> [1 of 1] Compiling Main             ( chapter8_5-IntegralDivision.hs,
>>> interpreted )
>>>
>>> chapter8_5-IntegralDivision.hs:4:7: error:
>>>     parse error (possibly incorrect indentation or mismatched brackets)
>>>   |
>>> 4 |       | n < d = (count, n)
>>>   |       ^
>>> Failed, 0 modules loaded.
>>> λ>
>>>
>>>
>>> But if I put the "go" function on its own line:
>>>
>>> dividedBy :: Integral a => a -> a -> (a, a)
>>> dividedBy num denom = go num denom 0
>>>   where
>>>     go n d count
>>>       | n < d = (count, n)
>>>       | otherwise = go (n - d) d (count + 1)
>>>
>>>
>>> It does compile:
>>>
>>> $ ghci chapter8_5-IntegralDivision.hs
>>> GHCi, version 8.2.1: http://www.haskell.org/ghc/  :? for help
>>> Loaded GHCi configuration from /home/wink/.ghci
>>> [1 of 1] Compiling IntegralDivision ( chapter8_5-IntegralDivision.hs,
>>> interpreted )
>>> Ok, 1 module loaded.
>>>
>>>
>>> Or I can put the "where" on the previous line:
>>>
>>> dividedBy :: Integral a => a -> a -> (a, a)
>>> dividedBy num denom = go num denom 0 where
>>>     go n d count
>>>       | n < d = (count, n)
>>>       | otherwise = go (n - d) d (count + 1)
>>>
>>>
>>> it also compiles:
>>>
>>> $ ghci chapter8_5-IntegralDivision.hs
>>> GHCi, version 8.2.1: http://www.haskell.org/ghc/  :? for help
>>> Loaded GHCi configuration from /home/wink/.ghci
>>> [1 of 1] Compiling Main             ( chapter8_5-IntegralDivision.hs,
>>> interpreted )
>>> Ok, 1 module loaded.
>>> λ>
>>>
>>>
>>> Can someone shed light on what I've done wrong?
>>>
>>> -- Wink
>>>
>>> _______________________________________________
>>> Beginners mailing list
>>> Beginners@haskell.org
>>> http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners
>>>
>>>
>>
>>
>> --
>> Rebecca Li
>> rebecca...@kittyhawk.aero
>> 617-899-2036 <(617)%20899-2036>
>> _______________________________________________
>> Beginners mailing list
>> Beginners@haskell.org
>> http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners
>>
> _______________________________________________
> Beginners mailing list
> Beginners@haskell.org
> http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: 
<http://mail.haskell.org/pipermail/beginners/attachments/20171021/5e418a60/attachment-0001.html>

------------------------------

Subject: Digest Footer

_______________________________________________
Beginners mailing list
Beginners@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners


------------------------------

End of Beginners Digest, Vol 112, Issue 20
******************************************

Reply via email to