Conversation

In numpy, `a + b` for arrays is fine. Can't do that with functions, of course. But could be cool. Seems like that's multiple point free programming with auto alignment. What's the most straightforward equivalent in Haskell for functions?
1
2
In this case, I want to add the result of two functions, not compose them. Could swap out `a x = a ^ 3` for a better example to keep addition separate. But `\x -> (a x) + (b x)` isn't the same as `a . b`
1