[flagged]
Exercises to Learn Rust
11–20 of 129 posts
Re: Exercises to Learn Rust
#12Re: Exercises to Learn Rust
#13Re: Exercises to Learn Rust
#14[flagged]
Re: Exercises to Learn Rust
#15[flagged]
Me personally I’m not from that background, and coming from higher level languages the selling points are not nearly as compelling given the learning curve and less mature ecosystem around many things. For instance, language performance is rarely the limiting factor in say API/backend development. Usually you have networking, io and databases eating most of your lunch, and also horizontal scaling is typically already in place for other reasons.
Re: Exercises to Learn Rust
#16Earlier quoted context omitted.
Being the first language to contest C++ in places like the kernal is a pretty big deal, no? It helps that the borrow checker is a new idea around being safe without gc.
It is, but I see people using it in places where Java would be good enough.
Re: Exercises to Learn Rust
#17Worth noting that this set of exercises was created by the author of "Zero to Production in Rust", the well-reviewed book with the crab-in-a-human-skull cover[1]. [1]: https://www.zero2prod.com
Anyone know the story behind this?
Re: Exercises to Learn Rust
#18This shows why I wouldn't use Rust for anything. Seems like a lot of verbosity for gains that don't really apply whatsoever for the kind of work I do (web apps and APIs). You have to remember let/mut fine, but then ownership/borrowing, and finally this `into()` thing - yuck! Like washing your face with sandpaper.
Re: Exercises to Learn Rust
#19Re: Exercises to Learn Rust
#20This is quite interesting! While we're on the topic, does anyone know of a similar set of exercises for learning Golang?