Earlier quoted context omitted.
Can you describe that in simpler terms? I read the wiki and the Python example seems to suggest writing functions that take a single argument.
I think the easiest way to explain point-free is this bash snippet: grok () { grep -v DEBUG | sort -n | uniq | tail } Unlike a generic pure function, it forcibly abstracts away arguments. It's a bunch of other functions combined somehow, but it's impossible to know the type/structure/semantics of the input. And in most cases also of the output! Although it's less visible in my example.
Debugging the point free style is different though as there are no points to put your breakpoint. Think of the identity function with a side effect as a replacement for print or breakpoints.