Hacker News new | ask | show | jobs
by xoroshiro 3212 days ago
And here I am, still waiting for the second edition of that book on learning Rust to be finished. I want to learn Rust for fun and I know I should probably just start on reading the book, but I keep making up excuses not to. I want my ++, --, ?:, SIMD, etc.
2 comments

you've got `let x = if y {100} else {99};`, which IMO is more readable than `let x = y ? 100 : 99`.
We had some delays, but things should wrap up on the book soon!

++, --, and ?: are not happening, but SIMD is actively being worked on!