Stream: gotime

Topic: Fallthrough 2: The Gems & Warts of Go


view this post on Zulip Kris Brandow (Jan 14 2025 at 00:34):

Hi all! We've shipped episode 2 of Fallthrough. You can listen to it here: https://fallthrough.fm/ep/2
Or if you want to watch, it's also published on YouTube!
https://youtu.be/b2Llr4tdwkc

view this post on Zulip Tim Uckun (Jan 14 2025 at 21:05):

Are you going to set up a zulip for your podcast or continue to piggyback here?

view this post on Zulip Matthew Sanabria (Jan 15 2025 at 15:50):

I'll bring it up with the rest of the team to discuss. As far as I know we don't have immediate plans for our own Zulip or similar.

view this post on Zulip Maxime Thomassin (Jan 20 2025 at 09:12):

My personal gem is No Color Function for async, it is such a pain in most other language and make the language less readable, more complex and make functions more specialized . My other gem is Embed keyword! So good, to have file with linter and good sperations. My warts are nil map on init, and some var initialization that you can easily accidentally shadow a variable.

I would also love to have a if x, err :=...
Where x can be outer scope

view this post on Zulip Matthew Sanabria (Jan 20 2025 at 11:26):

Oh embed is a good gem. Totally forgot about that.

I don't mind shadowing so much. I would like to be able to shadow and change types or shadow during x, err.

Tooling is fantastic. It feels like everything I need is behind the go command whereas other languages (JavaScript) require many packages to be usable. Other "newer" languages like Rust and Zig are doing a good job of tooling too.

view this post on Zulip Tim Uckun (Jan 20 2025 at 20:49):

My warts.

Context: I only use it when I am calling a library, I have no idea why I am passing it in, I do nothing with it afterwards, I always just pass in context.background (or whatever they use in the documentation example). Sometimes I look at the source code of the lib and guess what, they aren't using it either, they only want me to pass in a context because they have to pass it in to some call in the std lib.

No enums. Honestly WTF is this about. It seems like a petty childish thing to leave out of a language for no reason. Just give me enums already.

You don't have to assign the return variable if all you are returning it an error. Why does this code even compile let alone run without errors? https://go.dev/play/p/UKxcLnmpoJP

Similarly you don't have to handle errors and from what I can see 90% of the time nobody handles errors. They just pass it up the chain. Why not make this 90% use case more convenient and less verbose for the programmers.

Package management is far inferior to languages like ruby and java or whatever. There are many reasons I won't go into but it's really a pain to pin to particular versions of libraries, only include packages in certain environments etc.

The new iterators are like nails on a chalkboard for anybody who has ever used a language with proper iterators. Why go team? Why did you do this to us? Why not just have map and fold and whatnot like every other damned language?

Strict tags should be first class language feature so you don't have to put everything into a giant string, you should be able to put inspectable metadata tags on any element of the struct and the struct itself for that matter. This would also be super handy for generating documentation.

It should be much easier to manage different environments in go.

I could go and on but let me end with this.

Go devs should really just admit that go is an object oriented language and embedding structs is no different than inheritance and that packages are just modules with their module level variables and constructors and such.

I have some gems too but I'll stop while I am unpopular.

view this post on Zulip Ron Waldon-Howe (Jan 20 2025 at 23:18):

I won't bother getting serious with Go again until it has data-race protection like Swift/Rust/Pony/Elixir and until it has Rust-style enums (I think they're called algebraic sum types or something)
I hate that Go/Java/Kotlin makes me look at documentation to know whether something is thread safe: the compiler and type system should tell me that I've not sufficiently locked a data structure

view this post on Zulip Ron Waldon-Howe (Jan 20 2025 at 23:20):

Really, languages shouldn't add any way to share data between threads without requiring that it be done safely

view this post on Zulip Matthew Sanabria (Jan 21 2025 at 00:00):

Good list of warts!

Things like Println and such are good examples of functions that return errors that we largely ignore.

Go's v2+ module versioning rules are wonky and make me never want to release a library publicly.

I wish Go had map and fold. I haven't used the new iterators yet and I'm afraid to, if ever.

view this post on Zulip Tim Uckun (Jan 21 2025 at 01:24):

I thought of many more while at the gym, here are a few.

why can't the go compiler ignore the shebang line? Such a trivial amount of effort.

Why can't I define an interface for a struct member, who do interfaces only apply to struct methods?

Default values are a huge wart. At a minimum let me set default values myself

I want to write functions with default values for params (which implies an optional param).

Method overloading was already mentioned but yea that would be super nice. You guys also talked about operator overloading and I just don't understand why people get worked up over this. I have used this in postgres for more than a decade and postgres wouldn't even work without it. Same goes for defining your own operators. Super useful stuff.

view this post on Zulip Daniel Buckmaster (Jan 22 2025 at 01:03):

Ron Waldon-Howe said:

Rust-style enums (I think they're called algebraic sum types or something)

Algebraic data types is a broader category, and sum types are an example:

Two common classes of algebraic types are product types (i.e., tuples, and records) and sum types (i.e., tagged or disjoint unions, coproduct types or variant types).

Rust's enums are _sum_ types, which are less common in mainstream languages than _product_ types. Sum types are common in ML-inspired languages, which I count Rust as.

The "algebra", I believe, refers to the set theory of values that can be instances of a particular type.

view this post on Zulip Matthew Sanabria (Jan 25 2025 at 05:44):

Default values are a pretty huge wart. Especially in the context of constructing safe structs. Do I make the type or fields unexported to force callers through a constructor? Do I put a bunch of nil checks on methods? Do I just not care?

view this post on Zulip Ron Waldon-Howe (Jan 25 2025 at 06:32):

I dislike that Java/Go/Kotlin packages can span multiple files
I like being able to look at a file and know that I'm seeing the whole thing, I suppose
I guess we have LSP and go-to-definition, so it's not a huge deal, but it's something I find non-intuitive and confusing

view this post on Zulip Matthew Sanabria (Jan 25 2025 at 14:45):

Go packages can also span across files, but they must remain in the same directory. Agree that that's a nice feature of the language and it makes it easier to reason about a codebase.

view this post on Zulip Tim Uckun (Jan 25 2025 at 20:47):

One nice side effect of default values is named parameters. That seems like such a no brainer to me. Makes the code much easier to read and write.

I guess in go you just use structs for everything so they thought just pass in a struct

view this post on Zulip Matthew Sanabria (Jan 25 2025 at 21:04):

Yeah I think that's the idiom. Make some config or params struct that you pass into a function. Still doesn't get that guarantee they the object was initialized correctly but at least it's documenting.

view this post on Zulip Ron Waldon-Howe (Jan 26 2025 at 00:01):

I think pointers-versus-values in Go function signatures and invocations conflate too many concepts and are very confusing

view this post on Zulip Matthew Sanabria (Jan 26 2025 at 01:16):

It does get very confusing and it makes the programmer spend too much time thinking about it. When I read other people's code I often don't know what their intention is for pointer receivers.

view this post on Zulip Ron Waldon-Howe (Jan 26 2025 at 01:58):

This is a good read, too: https://fasterthanli.me/articles/i-want-off-mr-golangs-wild-ride

view this post on Zulip Matthew Sanabria (Jan 26 2025 at 17:01):

I feel like I read that one when it came out around COVID. I recall it being a good article. Gonna read it again.

view this post on Zulip Ron Waldon-Howe (Jan 26 2025 at 20:30):

For all my complaining, I do think painless cross-compilation, even using Linux to make macOS executables, is a Go gem
And while the standard library lacks loads of basic things around primitive types, the fact that it includes so many other things like HTTP, SSH, SQL, etc is often a gem ( but then also sometimes a wart :P )

view this post on Zulip Tim Uckun (Jan 26 2025 at 21:01):

I know that vlang was invented to be a better go and there is a lot of controversy around it but has anybody tried crystal? I think as a language crystal has gotten all the things we talk about right. Enums, Iterators, generics, named parameters, overloading, namespaces, packages, and a rich standard library. It also has macros. It is a compiled language but also has an interpreter for development.

It hasn't seemed to have caught on which is a shame because it could use a more active community.


Last updated: Apr 04 2025 at 01:15 UTC