✳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
- Frequently Asked Questions (FAQ) - The Go Programming Languagego.dev
- Writing Better Go: Lessons from 10 Code Reviews - Speaker Deckspeakerdeck.com
- Writing Better Go: Lessons from 10 Code Reviews - Speaker Deckspeakerdeck.com
- Go at Google: Language Design in the Service of Software Engineering - The Go Programming Languagego.dev
- golang packaging, golang package structure, golang package naming convention, golang packages, go package structure, go packages tutorialgolinuxcloud.com
- Effective Go - The Go Programming Languagego.dev
- styleguide | Style guides for Google-originated open-source projectsgoogle.github.io
- Four Days of Go – Evan Millerevanmiller.org
- Peter Bourgon · Go for Industrial Programmingpeter.bourgon.org
- Go go-to guide · YourBasicyourbasic.org
- styleguide | Style guides for Google-originated open-source projectsgoogle.github.io
- Naming Things in Code - journal.stuffwithstuff.comjournal.stuffwithstuff.com