comment in Go

There are two kinds of comments in Go:
* Line comments start with the character sequence // and stop at the end of the line.
* General comments start with the character sequence /* and stop with the first subsequent character sequence */.