Charlie Harvey

#687

I don't know how different Elm and Haskell are, but you can write multiplyBy6 without introducing the extra variable y in Haskell:

multiplyBy6 = multiply 6

I'm guessing that's what they meant by implementing it using currying?