go language learning notes, learning the language of the Bible will go some important points record it easy later

Assignment of variables

1. Use the ": =" statement brief variables must at least declare a new variable

f, err := os.Open(infile)
// ...
f, err := os.Create(outfile) // compile error: no new variables

2.

Guess you like

Origin www.cnblogs.com/weiweixiyu/p/12339810.html