you declare variables with the let
let
in rust, variables are immutable by default. to make a variable mutable, we add mut before the variable name.
mut