├── LICENSE ├── README.md ├── go.mod └── strings.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robpike/strings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robpike/strings/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module robpike.io/cmd/strings 2 | 3 | go 1.20 4 | -------------------------------------------------------------------------------- /strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robpike/strings/HEAD/strings.go --------------------------------------------------------------------------------