// Stan Smith // Project 1 // Sep 15, 2019Here is an example source code comment:
// Print numbers from 1 to 30
for (int i = 1; i <= 30; i++) {
System.out.print(i + " ");
}
A comment should explain what a section of source code does, not literally repeat the code.