For longer explanations, use multi-line comments. They start with /* and end with */. Everything between is ignored.
/*
This program demonstrates
how multi-line comments work
in Go code.
*/
package main
Multi-line comments are also useful for temporarily disabling code during debugging. Wrap the code in /* */ and it won't run.