Comment Spacing
Categories:
Always start comments with // followed by one space character.
Bad code
RowNo += 1000; //Move way below the budget
Good code
RowNo += 1000; // Move way below the budget
Last modified February 24, 2022: Added tags & categories + cleanup (5ee04366)
by waldo1001