summaryrefslogtreecommitdiffstats
path: root/src/doc/book/listings/ch03-common-programming-concepts/no-listing-05-mut-cant-change-types/src/main.rs
blob: f52635d0b2e661961127cb416faf39bd6326ec32 (plain)
1
2
3
4
5
6
fn main() {
    // ANCHOR: here
    let mut spaces = "   ";
    spaces = spaces.len();
    // ANCHOR_END: here
}