Skip to content

Commit

Permalink
Declare variables
Browse files Browse the repository at this point in the history
  • Loading branch information
tt committed Nov 30, 2014
1 parent b2bfc78 commit d970982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func main() {
fmt.Println(err)
return
}
usa, singsing, honkers = places[0], places[1], places[2]
usa, singsing, honkers := places[0], places[1], places[2]

fmt.Printf("%#v\n%#v\n%#v\n", usa, singsing, honkers)
// Place{Country:"United States", City:sql.NullString{String:"New York", Valid:true}, TelCode:1}
Expand Down

0 comments on commit d970982

Please sign in to comment.