this post was submitted on 08 Nov 2024
88 points (100.0% liked)

technology

23313 readers
104 users here now

On the road to fully automated luxury gay space communism.

Spreading Linux propaganda since 2020

Rules:

founded 4 years ago
MODERATORS
 

Rust lobbyists winning

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 1 week ago (2 children)

I am mostly joking but rust is quite annoying and is only useful in very specific circumstances. I'm not against encouraging people to use better designed languages than C though

[–] [email protected] 8 points 1 week ago (1 children)

If you're looking to write the types of server daemons often written in C, Go is another good choice. It's very C-like in its syntax. It has a lot of the same safety features Rust has but isn't nearly as complex to learn. It also has a huge standard library, so you rarely need to rely on third-party code.

Go isn't too suitable for drivers or kernels or other kinds of system software though. Rust is definitely a better choice for those.

[–] [email protected] 2 points 1 week ago

Yeah I've been using Go a lot lately. It's pretty good