Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
25
Task/Documentation/Go/documentation.go
Normal file
25
Task/Documentation/Go/documentation.go
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
// Example serves as an example but does nothing useful.
|
||||
//
|
||||
// A package comment preceeds the package clause and explains the purpose
|
||||
// of the package.
|
||||
package example
|
||||
|
||||
// Exported variables.
|
||||
var (
|
||||
// lookie
|
||||
X, Y, Z int // popular names
|
||||
)
|
||||
|
||||
/* XP does nothing.
|
||||
|
||||
Here's a block comment. */
|
||||
func XP() { // here we go!
|
||||
// comments inside
|
||||
}
|
||||
|
||||
// Non-exported.
|
||||
func nonXP() {}
|
||||
|
||||
// Doc not extracted.
|
||||
|
||||
var MEMEME int
|
||||
Loading…
Add table
Add a link
Reference in a new issue