let mut variable: Type; loop { variable = value; }
or
loop { let variable: Type = value; }
That's what I thought.
That's what I thought.