comment
To comment out a line of statement, we can use //. The system ignores the part of the line after //.
To comment out multiple lines, use /* ..... */.
Example
// This is a comment.
/*
This is a comment.
What we write here is just for fun. Do not execute.
Got it.
*/