this post was submitted on 31 Oct 2023
27 points (100.0% liked)

Rust

5658 readers
59 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

[email protected]

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS
 

Oxide is a personal project that takes inspiration from the principles discussed in "Notes on a Smaller Rust" and its follow-up, "Revisiting a 'smaller Rust'". It aims to explore a new language design that simplifies and optimizes the development process while inheriting Rust's best qualities.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 7 points 9 months ago

Kind of looks like an alternative universe where Rust really leaned into its initial Ruby influences. IMO the most interesting thing was kicked down the road, I'd like to see more of the plan for concurrency. Go's concurrency (which it says they're thinking of) kind of sucks for lots of things, like "do these tasks in parallel and give me the return values". Go can do it with channels and all that, but Rayon's par_iter() just magically makes it all work nicely.