Tour of Rust Table of Contents

Changing Variables

Rust cares a great deal about what variables are modifiable. Values fall into two types:

Mutable values are denoted with a mut keyword.

We will have more to say on this concept later, but for now just keep an eye out for this keyword.