| -- go.mod -- | |
| module rsc.io/quote | |
| -- LICENSE -- | |
| $MITLicense | |
| -- quote.go -- | |
| // Package quote collects pithy sayings. | |
| package quote // import "rsc.io/quote" | |
| // Hello returns a greeting. | |
| func Hello() string { | |
| return "Hello, world." | |
| } | |
| // Glass returns a useful phrase for world travelers. | |
| func Glass() string { | |
| // See http://www.oocities.org/nodotus/hbglass.html. | |
| return "I can eat glass and it doesn't hurt me." | |
| } |