<div dir="ltr">I'm revising my Grace text and trying to find a reasonable style for writing code.  one issue is where to put spaces in method requests.  Style guides I've looked at say no spaces before arguments in method requests:<div>     o.m(a, b)</div><div>but on the other hand say that there must be spaces after keywords in control structures</div><div>     if (cond) then {...}</div><div><br></div><div>Because in Grace we want to blur the line between these two, it seems like we should uniformly choose one or the other for both circumstances.  I've been writing them the second way:</div><div>    o.m (a, b)</div><div><br></div><div>One reason for this is that it works better for multipart names (at least in my opinion:</div><div>    o.put (elt) on (canvas)</div><div><br></div><div>Any suggestions, strong feelings, etc.?</div></div>