Which is faster?
from commander@lemmings.world to rust@lemmy.ml on 08 Mar 20:16
https://lemmings.world/post/22212576

let mut variable: Type;
loop {
    variable = value;
}

or

loop {
    let variable: Type = value;
}

#rust

threaded - newest