Go Is the New Java
twitter.com
Go Is the New Java
1–9 of 9 posts
Re: Go Is the New Java
#2> Just because you had the thought doesn't make it true.
Re: Go Is the New Java
#3One of the replies says the only sensible thing on that thread: > Just because you had the thought doesn't make it true.
Re: Go Is the New Java
#4Re: Go Is the New Java
#5Re: Go Is the New Java
#6Re: Go Is the New Java
#7Go's Windows and GUI support is questionable at best. If anything, Go is a Ruby, Python, and server-side C++ killer. Go gives you the development iteration speed of an interpreted language with performance approaching C. Go is a reasonable compromise in the backend arena.
In my experience, what would take me 30 lines of Ruby with maybe the same number of lines for its test takes 2x the length and boilerplate with Golang.
Re: Go Is the New Java
#8Re: Go Is the New Java
#9Go's Windows and GUI support is questionable at best. If anything, Go is a Ruby, Python, and server-side C++ killer. Go gives you the development iteration speed of an interpreted language with performance approaching C. Go is a reasonable compromise in the backend arena.
I disagree with the speed of an interpreted language. Ruby and Python (to a lesser extent) make writing flexible, readable code very, very easy. You don’t have to worry about types (unless you want to) and correctness; there are lots of ways of getting things done in those languages, and writing tests/mocks/stubs is WAY easier because of that. In my experience, what would take me 30 lines of Ruby with maybe the same…