<div dir="ltr">Thanks Rebecca and Brody, I did some additional experimentation and, of course indenting to under the "o" in "go" worked:<div dir="ltr"><div><div><br></div><div>dividedBy :: Integral a => a -> a -> (a, a)</div><div>dividedBy num denom = go num denom 0</div><div>   where go n d count</div><div>                | n < d = (count, n)</div><div>                | otherwise = go (n - d) d (count + 1)</div></div><div><br></div></div><div dir="ltr"><div>But under or before the "g" doesn't:</div></div><div dir="ltr"><div><div><br></div><div>dividedBy :: Integral a => a -> a -> (a, a)</div><div>dividedBy num denom = go num denom 0</div><div>   where go n d count</div><div>              | n < d = (count, n)</div><div>              | otherwise = go (n - d) d (count + 1)</div></div><br class="m_-7081908123911449183inbox-inbox-Apple-interchange-newline"><div><br></div></div><div dir="ltr"><div>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.</div></div><div dir="ltr"><div><div><br></div><div>dividedBy :: Integral a => a -> a -> (a, a)<br></div><div><div>dividedBy num denom = go num denom 0</div><div>   where</div><div> go n d count</div><div>   | n < d = (count, n)</div><div>   | otherwise = go (n - d) d (count + 1)</div></div><br class="m_-7081908123911449183inbox-inbox-Apple-interchange-newline"></div><div><br></div></div><div dir="ltr"><div><div>dividedBy' :: Integral a => a -> a -> (a, a)</div><div>dividedBy' num denom =</div></div></div><div dir="ltr"><div><div>    let</div><div> numerator = num</div><div> denominator = denom</div></div></div><div dir="ltr"><div><div> go n d count</div><div>   | n < d = (count, n)</div><div>   | otherwise = go (n - d) d (count + 1)</div></div></div><div dir="ltr"><div><div>    in go numerator denominator 0</div></div><div><br></div><div><br></div><div>So this make having to indent the "|" in a function seem doubly weird to me, but so be it :)</div><div><br></div><div>Oh, and on the lastest version I have, haskell-programming-1.0RC2-ereader.pdf,</div><div>the section Brody mentioned on page 40 seems to be on page 59 in the subsection titled "Troubleshooting" underneath section 2.7 "Declaring Variables.</div><div><br></div><div>For other novices the haskell wiki indenation page is helpful:</div><div>   <a href="https://en.wikibooks.org/wiki/Haskell/Indentation" target="_blank">https://en.wikibooks.org/wiki/Haskell/Indentation</a></div><div>There is even has an example that shows it's not always necessary to indent,</div><div>just that things need to be aligned.</div></div><div dir="ltr"><br><div class="gmail_quote"><div dir="ltr">On Thu, Oct 19, 2017 at 6:01 PM Brody Berg <<a href="mailto:brodyberg@gmail.com" target="_blank">brodyberg@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="auto">I believe this is all covered starting on page 40 of the latest edition with examples just like Rebecca has shared. </div><div><br><div class="gmail_quote"><div>On Thu, Oct 19, 2017 at 17:35 Rebecca Li <<a href="mailto:rebecca.li@kittyhawk.aero" target="_blank">rebecca.li@kittyhawk.aero</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>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". <div><br></div><div>A version I got ghc to accept:</div></div><div><div><div><br></div><div>dividedBy :: Integral a => a -> a -> (a, a)</div><div>dividedBy num denom = go num denom 0</div><div>  where go n d count</div><div>              | n < d = (count, n)</div><div>              | otherwise = go (n - d) d (count + 1)</div></div><div><br></div></div><div><div>A similar example with let would be the following, where b lines up with a </div><div>let a = blah</div><div>     b = blah'</div><div><br></div><div>but this would not work since b is only one level indented, not matching a. </div><div>let a = blah</div><div> b = blah</div><div><br></div><div>Hopefully the formatting goes through email.. </div><div><br></div><div><br></div></div><div class="gmail_extra"></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Oct 19, 2017 at 5:13 PM, Wink Saville <span><<a href="mailto:wink@saville.com" target="_blank">wink@saville.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>I created a file with the dividedBy example from Chapter 8.5 of "Haskell Programming from first principles" :<div><div><br></div></div><div><div>dividedBy :: Integral a => a -> a -> (a, a)</div><div>dividedBy num denom = go num denom 0</div><div>  where go n d count</div><div>      | n < d = (count, n)</div><div>      | otherwise = go (n - d) d (count + 1)</div><div><br></div></div><div><br></div><div>I get the following error when I load into ghci:</div><div><br></div><div><div><div><div>$ ghci chapter8_5-IntegralDivision.hs </div><div>GHCi, version 8.2.1: <a href="http://www.haskell.org/ghc/" target="_blank">http://www.haskell.org/ghc/</a>  :? for help</div><div>Loaded GHCi configuration from /home/wink/.ghci</div><div>[1 of 1] Compiling Main             ( chapter8_5-IntegralDivision.hs, interpreted )</div><div><br></div><div>chapter8_5-IntegralDivision.hs:4:7: error:</div><div>    parse error (possibly incorrect indentation or mismatched brackets)</div><div>  |</div><div>4 |       | n < d = (count, n)</div><div>  |       ^</div><div>Failed, 0 modules loaded.</div><div>λ> </div></div></div></div><div><br></div><div><br></div><div>But if I put the "go" function on its own line:</div><div><br></div><div><div>dividedBy :: Integral a => a -> a -> (a, a)<br></div><div>dividedBy num denom = go num denom 0</div><div>  where</div><div>    go n d count</div><div>      | n < d = (count, n)</div><div>      | otherwise = go (n - d) d (count + 1)</div></div><div><br></div><div><br></div><div>It does compile:</div><div><br></div><div><div>$ ghci chapter8_5-IntegralDivision.hs </div><div>GHCi, version 8.2.1: <a href="http://www.haskell.org/ghc/" target="_blank">http://www.haskell.org/ghc/</a>  :? for help</div><div>Loaded GHCi configuration from /home/wink/.ghci</div><div>[1 of 1] Compiling IntegralDivision ( chapter8_5-IntegralDivision.hs, interpreted )</div><div>Ok, 1 module loaded.</div></div><div><br></div><div><br></div><div>Or I can put the "where" on the previous line:</div><div><br></div><div><div><div>dividedBy :: Integral a => a -> a -> (a, a)</div><div>dividedBy num denom = go num denom 0 where</div><div>    go n d count</div><div>      | n < d = (count, n)</div><div>      | otherwise = go (n - d) d (count + 1)</div></div></div><div><br></div><div><br></div><div>it also compiles:</div><div><br></div><div><div>$ ghci chapter8_5-IntegralDivision.hs </div><div>GHCi, version 8.2.1: <a href="http://www.haskell.org/ghc/" target="_blank">http://www.haskell.org/ghc/</a>  :? for help</div><div>Loaded GHCi configuration from /home/wink/.ghci</div><div>[1 of 1] Compiling Main             ( chapter8_5-IntegralDivision.hs, interpreted )</div><div>Ok, 1 module loaded.</div><div>λ> </div></div><div><br></div><div><br></div><div>Can someone shed light on what I've done wrong?</div><span class="m_-7081908123911449183m_5943404994352195007m_-8748199389737817460HOEnZb"><font color="#888888"><div><br></div><div>-- Wink</div></font></span></div>
<br>_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
<br></blockquote></div><br><br clear="all"><div><br></div></div><div class="gmail_extra">-- <br><div class="m_-7081908123911449183m_5943404994352195007m_-8748199389737817460gmail_signature" data-smartmail="gmail_signature"><div><div>Rebecca Li<br></div><a href="mailto:rebecca.li@kittyhawk.aero" target="_blank">rebecca.li@kittyhawk.aero</a><br><a href="tel:(617)%20899-2036" value="+16178992036" target="_blank">617-899-2036</a><br></div></div>
</div>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
</blockquote></div></div>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
</blockquote></div></div></div>