removal of unwanted variable

This commit is contained in:
Bharath Ram Hariharan 2018-01-04 14:44:36 -05:00 committed by Mark McGranaghan
parent d8b255cf7b
commit 6805c6cdb8

View File

@ -32,7 +32,6 @@ func main() {
// separate goroutines now, so execution falls through
// to here. This `Scanln` code requires we press a key
// before the program exits.
var input string
fmt.Scanln(&input)
fmt.Scanln()
fmt.Println("done")
}