haskell-programming

Simple Haskell programs
git clone git://git.laack.co/haskell-programming.git
Log | Files | Refs

pointfree.hs (170B)


      1 makeGreeting salutation person = salutation <> " " <> person
      2 -- makeGreeting' salutation = ((salutation <> " ") <>)
      3 
      4 makeGreeting' salutation = (<>) (salutation <> " ")
      5