Short intro to C++ for Rust developers: Ownership and Borrowing

Today, there was a reddit post that asked what one needs to know when
Going after C++ with Rust basics. I thought this was an
interesting question to answer in a blog post and revive my blog.

Similar

Guide to Error Handling in Rust

Error handling in Rust is very different if you’re coming from other languages. In languages like Java, JS, Python etc, you usually throw exceptions and return successful values. In Rust, you return something called a Result. (more…)

Read more »

Rust: Pushdown Automata

Rust is a really great language. It’s a real pain to get to know the borrow checker, but once you get past that hurdle you can start making some cool things. Today I’d like to discuss how we can make… (more…)

Read more »