The blank identifier _ in Go tells the compiler to ignore a value, variable, or import, effectively discarding it without causing an unused variable error.
// Ignore the second return value from a function call
file, _ := os.Open("data.txt")
// Import a package for its side effects only
import _ "net/http/pprof"
// Skip a loop index
for _, value := range slice {
fmt.Println(value)
}