And I can\'t seem to understand this kind of variable declaration:
_, prs := m[\"example\"]
What exactly is \"_,\" doing and w
The blank identifier may be used whenever syntax requires a variable name but program logic does not, for instance to discard an unwanted loop index when we require only the element value.
Excerpt From:
The Go Programming Language (Addison-Wesley Professional Computing Series)
Brian W. Kernighan
This material may be protected by copyright.