http://www.perlmonks.org?node_id=380447


in reply to Specializing Functions with Currying

I would have just said this in perlish instead of Haskelish. I think you'll communicate better to perl people if you stop using the verb currying and use the noun closure instead. Its just the perl localism and it is how they are typically talked about.

bold => sub { wrap_with_html( b => @_ ) }; # vs bold => curry \ &wrap_with_html => 'b';