Summary for developers
/* */
block comments : package//
line comments : simple packageSemicolons
Idiomatic Go programs have semicolons only in places such as for loop clauses, to separate the initializer, condition, and continuation elements.
if x > 0 {
return y
}
// Like a C for
for init; condition; post { }
// Like a C while
for condition { }
// Like a C for(;;)
for { }