> Go's type inference makes for lean code, but requires you to dig a little to figure out what the type of a given variable is if it's not explicit. So given code like:
foo, bar := someFunc(baz)
> You'd really like to know what foo and bar actually are, in case you want
to add some new code to operate on them.
The gocode utility (which works with several editors) does exactly this.
The gocode utility (which works with several editors) does exactly this.