
10 Apr
2016
10 Apr
'16
1:11 p.m.
On Sun, Apr 10, 2016 at 05:16:24PM +0100, mike h wrote:
So is mc . mc $ x + 11
the only correct way to write this particular function in ‘.’ style ?
Hello Mike, (mc . mc) (x + 11) would do too. Remember, function application (white-space) takes precedence over *everything*, so: mc . mc ( x + 11 ) ^ ^ | +------- whitespace | +----------- operator is the same as: mc . (mc ( x + 11 ))