I don't have much time today, so just how to write a comment I will write it lightly.
A comment with only one line can be written as follows.
Only one line
// (Comment content)
The part surrounded by / * ~ * / is a comment. "/ " Means the start of the comment and " /" means the end of the comment.
Multiple lines
/*
Comment content
*/
Recommended Posts