Does anyone use the old Unix-style major comments in IonMonkey code?
I agree with Waldo, they help for large-comment readability, absent
colorization or other aids. The // style runs into code and / is an
operator. It's also visually light. This is subjective of course, and
// lots to say
// here but no time
// to say it all
code = goes + here;
can be easier to read. The Unix-style major comments waste lines on /*
and */ and make a wall of stacked stars, which can get in the way.
FWIW I think both are fine, and have been since we switched to C++. The
style guide never got updated from its C roots, 'sall.
/be
David Anderson wrote:
> For what it's worth, we've been requiring // style in ion/*
>
> -David
>
> On 04/02/2012 07:10 PM, Nicholas Nethercote wrote:
>> On Mon, Apr 2, 2012 at 11:33 AM, Jeff Walden<
jwald...@mit.edu>
>> wrote:
>>>
>>> I don't think //-style comments are disallowed.
>>