Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View 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