-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.go
More file actions
23 lines (22 loc) · 882 Bytes
/
data.go
File metadata and controls
23 lines (22 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package proverbs
var proverbs = []string{
"Don't communicate by sharing memory, share memory by communicating.",
"Concurrency is not parallelism.",
"Channels orchestrate; mutexes serialize.",
"The bigger the interface, the weaker the abstraction.",
"Make the zero value useful.",
"interface{} says nothing.",
"Gofmt's style is no one's favorite, yet gofmt is everyone's favorite.",
"A little copying is better than a little dependency.",
"Syscall must always be guarded with build tags.",
"Cgo must always be guarded with build tags.",
"Cgo is not Go.",
"With the unsafe package there are no guarantees.",
"Clear is better than clever.",
"Reflection is never clear.",
"Errors are values.",
"Don't just check errors, handle them gracefully.",
"Design the architecture, name the components, document the details.",
"Documentation is for users.",
"Don't panic.",
}