Как проверить существование члена?
package main
import (
"fmt"
// "math/rand"
)
func main() {
type Employee struct {
ID int
Name string
Address string
some int
}
x := Employee{
Name: "Vasya",
}
fmt.Println(x.some)
fmt.Println("")
}
out:
0