The Go Language Specification documents the `_` identifier, called the `blank` identifier: https://go.dev/ref/spec#Blank_identifier. However the Zig Language Reference only says: ``` "The `_ = C;` syntax is a no-op reference to the identifier `C`" ``` inside an example.
The Go Language Specification documents the
_identifier, called theblankidentifier: https://go.dev/ref/spec#Blank_identifier.However the Zig Language Reference only says:
inside an example.