Type // before text and the compiler ignores everything after it on that line. Comments let you explain what code does without affecting how it runs. Run the program with a comment.
The comment does not appear in output. Comments exist only for humans reading the code. You can comment out code temporarily. Put // before a line and the compiler ignores it. Remove // to make the code active again.