Table of Contents

Go - Grammar Parsing

About

Go Script structure:

Go does not require semicolons at the ends of statements or declarations, except where two or more appear on the same line. In effect, newlines following certain tokens are converted into semicolons, so where newlines are placed matters to proper parsing of Go code.

For instance:

Documentation / Reference