<div dir="ltr">I just started working my way through a Haskell book... first time with functional programming. Mid way through the first chapter she's introducing point-free programming with a trivial example transitioning from not point-free...<div><br></div><div>makeGreeting salutation person = salutation <> " " <> person</div><div><br></div><div>to point free...</div><div><br></div><div>makeGreeting' = (<>) . (<> " ")</div><div><br></div><div>After a little playing with it... it seems to make sense. So I thought I'd try evolving from salutation and name to salutation, first, and last names. But, after a bit of tinkering, I haven't been able to make it work... </div><div><br></div><div>I'm sure it's something simple (one way or the other)... any help would be appreciated!</div><div><br></div><div>Brad</div></div>