I'm confused by the first 2 strings returned by "windows.Environ()" on a Windows pro 7 system (go version go1.8 windows/amd64). env[0] apparently has a key of "=::"; env[1] has a key "=C:". Can anyone point me to where this is documented? Thx in advance.
str_EnvStrs := windows.Environ()
//
// str_EnvStrs[0] == '=::=::\'
fmt.Printf("str_EnvStrs[0] == '%v'\n",str_EnvStrs[0])
//
// str_EnvStrs[1] == '=C:=C:\Users\(WINLOGIN)\Documents\Source\go\src
// \github.com\(GITLOGIN)\maps_arrays_slices'
fmt.Printf("str_EnvStrs[1] == '%v'\n",str_EnvStrs[1])