Test Code

Published 437d ago

 testuser

test code

fn main() {
    let mut x = 1000;
    while x > 100 {
        x = x - 100;
        println!("{:?}", x)
    }
}

3

Please login or sign up to comment and collaborate