blob: 06276b277dc4fa492c8af69d1b0d9f59bdbfc309 [file] [log] [blame]
-- 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."
}