Files
LearnGO/go/pkg/mod/github.com/go-delve/delve@v1.23.0/_fixtures/issue1615.go
T
2024-09-19 21:38:24 -04:00

22 lines
264 B
Go

package main
var strings = []string{
"one",
"two",
"three",
"four",
"projects/my-gcp-project-id-string/locations/us-central1/queues/my-task-queue-name",
"five",
"six",
}
func f(s string) {
// ...
}
func main() {
for _, s := range strings {
f(s)
}
}