flâneur — a map of the web's best reading

Package names - The Go Programming Language

go.dev · 1,554 words · saved by 1 readers

Go is an open source programming language that makes it easy to build simple, reliable, and efficient software.

Package names - The Go Programming Language The Go Blog Package names Sameer Ajmani 4 February 2015 Introduction Go code is organized into packages. Within a package, code can refer to any identifier (name) defined within, while clients of the package may only reference the package's exported types, functions, constants, and variables. Such references always include the package name as a prefix: foo.Bar refers to the exported name Bar in the imported package named foo . Good package names make code better. A package's name provides context for its contents, making it easier for clients to unde

Explore this link on the map →

saved by

related reading