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 } ```