this post was submitted on 12 Mar 2025
4 points (59.1% liked)

General Programming Discussion

8243 readers
1 users here now

A general programming discussion community.

Rules:

  1. Be civil.
  2. Please start discussions that spark conversation

Other communities

Systems

Functional Programming

Also related

founded 6 years ago
MODERATORS
all 9 comments
sorted by: hot top controversial new old
[–] [email protected] 5 points 3 weeks ago (1 children)

At $DAYJOB, we develop an application for basically linking up low-level devices over the internet. And yeah, in one codebase, we have:

  • A backend
  • A distributed system client/peer
  • A CLI
  • A web frontend
  • And simulation software to flash to those low-level devices

All of that is in Rust, so it's not just not wanting to learn different languages, it's genuinely useful.
We can use the same model types in the various clients and the backend, meaning it's compile-time guaranteed that they work together. Just as well, we can generally use the same libraries. And while e.g. the web frontend and low-level software use frameworks, making it not entirely trivial to just jump into that part of the codebase, the barrier for entry is a lot lower.

And yeah, ultimately that flexibility is something I find hard to give up, especially when customer requirements are as nebulous as they usually are.
Honestly, we never had a hard reason why we should be using Rust. It was just that maybe we'd need such low-level simulation software, maybe we need the performance to process each individual network package, maybe we need to do things in the Linux kernel. The rest was just that we wanted to use Rust, because it's a cool language.

[–] [email protected] 1 points 3 weeks ago

That sounds amazing!

[–] [email protected] 4 points 3 weeks ago (1 children)

I’m delighted to see Zig get a mention.

[–] [email protected] 2 points 3 weeks ago (1 children)

I heard great things about Zig - I just think Rust is better, more general too.

[–] [email protected] 2 points 3 weeks ago (1 children)
[–] [email protected] -1 points 3 weeks ago (1 children)

That's a cool thing about Rust - there is no need for Rust++.

[–] [email protected] 2 points 3 weeks ago* (last edited 3 weeks ago) (1 children)

Then it's not the new C, maybe the new C++

[–] [email protected] 1 points 3 weeks ago

If you watched the video you would know what he means by the title. And no - the meaning of the title is not that Rust is a LITERAL C replacement. Watch the video next time, please.