> Stating the obvious, from a newcomer's perspective, ints are mutable. Except they're not :( ints are immutable; you can't change the value 3. Two threes are the same int, regardless of where they are stored. You can have a *mutable* cell that holds an int; similarly, you can have a mutable cell that holds a value.