this post was submitted on 26 Feb 2024
48 points (98.0% liked)

Rust

5744 readers
8 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
 

What are you building with Rust?

Are you using Rust at work? Hobby projects?

Why did you choose Rust for your project?

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

I'm doing Game Dev with Rust (Godot + gdext in my case). Sadly it's just hobby projects, but would love to actually use rust (at all) at work.

I choose Rust over other languages (C#, Python, GDScript, C++, etc), because I enjoy writing in Rust.

I love that it's so concise and easy to read, while providing super useful errors at compile time, and great auto-completion thanks to the rust-analyzer. Despite it being a much more complicated languages than almost even C++, it provides so much useful information when writing/compiling, that running can be mostly taken for granted (but shouldn't of course).

I don't need to worry about types or pointers, but rather about writing what I want in Rust, which is simply too much fun.