A Note on Semicolons

We'll cover the following...

If you remember back from Anatomy of Rust, we said that any expression can be converted into an expression statement by putting a semicolon at the end. That’s what happens with all of our println! macro calls. The println! part is an expression; following it with a ...