Quote: "TheComet, DarkBasic is not standard Basic. Your argument is invalid."
Go look up commenting in the DBC help files.
Quote: "Oh dear, looks like I've lost a customer; I had better create a rem insertion generator before the review."
I'm not saying
that, I'm just saying you should be aware of the consequences of breaking a standard (newcomers and other programmers may take your commenting style on board).
I don't care how you comment your code if it's good, well thought through code. I just want you to be aware.
This discussion could also be about why even bothering to comment code at all, the end user never sees it anyway. It's the same argument with the same answer: because it's a bad habit.
Quote: "There is a difference between knowing the standard, and abiding by it. I see there being no evidence of the people here not knowing what the standards are."
If you know a standard, what motivates you not to abide to it?
Quote: "What kind of benefit is that? You are disciplined in writing more code?"
Quote: "I respect your views, but in a similar light to what Yodaman Jer was saying, better get the priorities right or by the time you grow old you may realize that a certain standard did really do much good for you after-all; time and energy being spent on sticking to the standards could have been spent being good at something more crucial to the ever changing world in a financial disrupted climate."
I should have elaborated more. These two quotes are closely related.
Basically, disciplining yourself to abide to extremely simple things such as correct, detailed comments, indenting your code correctly, giving your variables useful names, using camel-case syntax for variables etc. has an effect on your overall programming discipline.
Are you not indenting your code because there are higher priorities to be concerned about?
Have you decided to use variables such as a, b, c, d instead of useful names because there are higher priorities to be concerned about?
Of course not! (I hope not, at least).
So why should correct comment syntax be any different?
------------------------------------------------------------------------
ABOVE ALL, no matter how you comment, it's essential you're being
consistent. Chris, you said you comment with // for separating functions and ` for comments. You have a system you're sticking to, and you're not using different syntax at random times. Fair enough.
Just for the record, I can type "rem" faster than "//" because the keys are far more convenient.
TheComet