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… Read more

Similar

Fallible Iterator Adapters in Rust

A great aspect of the Rust stdlib is that many common operations are provided with a shared idiom. Rather than say having to remember how to write a correct sort function by hand, the stdlib provides a fast one for you. (more…)

Read more »

How Rust Helps You Prevent Bugs

If you have ever written a program of any scale before, you may have run into bugs. Tiny mistakes that you made while writing that screw up the execution of your program. The more complex your program gets, the higher the chance of bugs slipping in! (more…)

Read more »