←back to thread

302 points Bogdanp | 4 comments | | HN request time: 0.647s | source
Show context
rednafi ◴[] No.44392307[source]
I’m glad that Go went the other way around: compilation speed over optimization.

For the kind of work I do — writing servers, networking, and glue code — fast compilation is absolutely paramount. At the same time, I want some type safety, but not the overly obnoxious kind that won’t let me sloppily prototype. Also, the GC helps. So I’ll gladly pay the price. Not having to deal with sigil soup is another plus point.

I guess Google’s years of experience led to the conclusion that, for software development to scale, a simple type system, GC, and wicked fast compilation speed are more important than raw runtime throughput and semantic correctness. Given the amount of networking and large - scale infrastructure software written in Go, I think they absolutely nailed it.

But of course there are places where GC can’t be tolerated or correctness matters more than development speed. But I don’t work in that arena and am quite happy with the tradeoffs that Go made.

replies(9): >>44392470 #>>44392882 #>>44393976 #>>44394789 #>>44395314 #>>44395527 #>>44395624 #>>44398142 #>>44398420 #
1. danielscrubs ◴[] No.44395624[source]
One day I would like to just change pascals syntax a bit to be Pythonic and just blow the socks of junior and Go developers.
replies(2): >>44397375 #>>44397908 #
2. the_sleaze_ ◴[] No.44397375[source]
That's what they did to Erlang with Elixir and now there are a lot of people saying it's the Greatest Of All Time.

I'd be interested in this project if you do decide to pursue it.

3. rednafi ◴[] No.44397908[source]
Sounds like the guy who wanted to write curl in a weekend. /s
replies(1): >>44404468 #
4. danielscrubs ◴[] No.44404468[source]
You’d be surprised. Here is the Pascal successor Oberons very short Ebnf. https://oberon07.com/o7EBNF.xhtml

Something to look into in retirement.