|
|
|
|
|
by weberc2
3229 days ago
|
|
> Until some idiot checks it in on git despite the .gitignore (yes, this is possible, as I discovered after people accidentally did it). This seems like a ridiculous edge case to optimize for. It's rare and trivially corrected. > Java’s tooling is far more intuitive. I don’t have to configure a GOPATH, or deal with go get or deps or stuff, I simply define my build.gradle.kts, do gradle build, and I’m done. I don’t have to care where dependencies are, or what transpilation steps are happening. You don't have to configure a $GOPATH in Go. If you don't specify it, it defaults to $HOME/go. Just use `dep` to manage your versioned dependencies or `go get` if you're prototyping. Unlike Gradle, there is no scripting language to learn--static binaries and native dependencies are supported with no extra configuration, and everything is fast without a complicated daemon to install. |
|