this post was submitted on 13 Sep 2024
60 points (86.6% liked)

Programming

17022 readers
246 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] mox@lemmy.sdf.org 7 points 5 days ago (1 children)

It would be nice to include Zig's approach in the comparison. I've only just begun learning it, but the syntax seems pretty elegant from what I've seen so far.

Upvoting not because I share author's preference, but because I'm interested in reading other people's perspectives on the topic.

[โ€“] thingsiplay@beehaw.org 2 points 5 days ago

Read my reply with a handful of sea salt. I just read tutorials and documentation a bit and did Hello World.

Zig is pretty cool too! It can run C code directly just like C++ does (I think), kind of drop in replacement. From my reading so far, Error Handling is kind of a marriage between Go's and Rust's Error handling. Actually pretty cool. It has Error Types, but is kept relatively simple and doesn't force to do all the stuff. It has Try and Catch keywords to handle errors elegantly, but don't be fooled, this has nothing to do with Try...Catch blocks for Exceptions. Zigs Try and Catch are more like Rusts Result type handling, at least from what I read so far.

I lean more towards Zig than Go, but it still has not reached stable 1.0 release.