- Jan 6, 2002
- 148
- 0
- 76
Wondering from the programmers out there - what's your preferred commenting style? I like to call out portions of code using comments and have been using something along the lines of:
//----------------------------
// A comment.
// Line two
//----------------------------
I don't particularly care for this as it's hard to add text to line one and get it to stay in bounds of the dashes and look 'neat'. I tried
/*--------------------*\
A comment
\*--------------------*/
As an alternative, but I still don't like it. Thought others might have opinions.
//----------------------------
// A comment.
// Line two
//----------------------------
I don't particularly care for this as it's hard to add text to line one and get it to stay in bounds of the dashes and look 'neat'. I tried
/*--------------------*\
A comment
\*--------------------*/
As an alternative, but I still don't like it. Thought others might have opinions.
