Comments and C-Style

Go provides C-style block comments and C++-style line comments. Line comments are the norm.

Block comments appear primarily as package comments, but are useful within an expression or for disabling large swaths of code.


// This comment only spans one line.

/*
    This one covers
    multiple lines.                  
*/
                        
comments_cstyle.go