Closed bma3131 closed 4 years ago
I don't think this has to change, considering that append("foo")
and flip(concat, "foo")
are the same
// append :: String -> String -> String
const append = flip(concat);
Thanks for catching this! I've simply removed the hint in 3802257.
Cheers!
exercises/ch05/exercise_c.js uses
concat
function. It also hints that theflip
function may come in handy. But solution is done withappend
function and it doesn't useflip
.