Skip to content

Instantly share code, notes, and snippets.

@ridhoperdana
Last active December 30, 2020 05:21
Show Gist options
  • Select an option

  • Save ridhoperdana/04a3a79e5f5cf536f28fbe03305f86d8 to your computer and use it in GitHub Desktop.

Select an option

Save ridhoperdana/04a3a79e5f5cf536f28fbe03305f86d8 to your computer and use it in GitHub Desktop.
example of bad function name using noun
package main
import (
"fmt"
)
func names() {
names := []string{"John", "Doe"}
for index, name := range names {
fmt.Printf("Some string at index %v with value %v", index, name)
}
}
func main() {
names()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment