We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This is helpful to avoid using some identifiers which should be used in some scopes carelessly.
Example:
package main func main(){ var n = 123, // use n { // use n var n = _ // now n disppears } // here, n is still alive // use n }