<div dir="ltr">Thanks, that's clearer now.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Dec 22, 2020 at 12:55 AM Francesco Ariis <<a href="mailto:fa-ml@ariis.it">fa-ml@ariis.it</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Hello Lawrence,<br>
<br>
Il 21 dicembre 2020 alle 23:59 Lawrence Bottorff ha scritto:<br>
> addThree :: (Num a) => a -> a -> a -> a<br>
> addThree = \x -> \y -> \z -> x + y + z<br>
> […]<br>
><br>
> But how is the beta reduction happening with addThree?<br>
<br>
Should be:<br>
<br>
addThree = (\x -> \y -> \z -> x + y + z) 1 2 3<br>
         = (\y -> \z -> 1 + y + z) 2 3              beta<br>
         = (\z -> 1 + 2 + z) 3                      beta<br>
         = 1 + 2 + 3                                beta<br>
         = …<br>
<br>
Does that make sense?<br>
—F<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>
</blockquote></div>