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

or

loop {
    let variable: Type = value;
}
  • commanderOP
    link
    fedilink
    English
    arrow-up
    5
    ·
    1 month ago

    Fascinating! Thank you for sharing this.