Hacker News new | ask | show | jobs
by btilly 4189 days ago
Actually they do have incremental compilation at the package level. Use go install and you'll get it. Use go build and you throw away intermediate build artifacts so you don't get it. This is all documented.

In practice compilation times are not a pain point for golang.

1 comments

Even better, `go get ./...` installs all dependent packages.