Sectioning is a concise way to partially apply arguments to infix operators.
For example, if we want to write a function which adds "ing" to the end of a word we can use a section to succinctly define a function.
> (++ "ing") "laugh"
"laughing"
Notice...