this post was submitted on 29 Mar 2026
6 points (87.5% liked)

Learn Programming

2153 readers
1 users here now

Posting Etiquette

  1. Ask the main part of your question in the title. This should be concise but informative.

  2. Provide everything up front. Don't make people fish for more details in the comments. Provide background information and examples.

  3. Be present for follow up questions. Don't ask for help and run away. Stick around to answer questions and provide more details.

  4. Ask about the problem you're trying to solve. Don't focus too much on debugging your exact solution, as you may be going down the wrong path. Include as much information as you can about what you ultimately are trying to achieve. See more on this here: https://xyproblem.info/

Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] artwork@lemmy.world 2 points 2 weeks ago* (last edited 2 weeks ago) (2 children)

This is quite interesting, since the article states absolutely nothing about Go language.
Since, it's the most common or even fairly standard technique in the language:

func Hello(name string) (string, error) {
    // If no name was given, return an error with a message.
    if name == "" {
        return "", errors.New("empty name")
    }
    // ...
}

Source: go.dev/doc/tutorial/handle-errors

[–] lbfgs@programming.dev 5 points 2 weeks ago

Go's val, err := maybeDoThing() pattern isn't the same thing because it's not a discriminated union like Rust's Result or C++'s std::expected or the Typescript example in the article. Moreover, due to restrictions in Go's generics, it's impossible to implement what is imo the most attractive pattern enabled by the discriminated union Result types - monadic operations.

[–] felsiq@piefed.zip 3 points 2 weeks ago (1 children)

Ditto for rust, although I didn’t read the article to know if they mentioned that one lol

[–] artwork@lemmy.world 2 points 2 weeks ago

Thank you! Apparently, they did not mention Rust, too ^^"