Test Code
Published 437d ago
testuser
test code
fn main() {
let mut x = 1000;
while x > 100 {
x = x - 100;
println!("{:?}", x)
}
}
Please login or sign up to comment and collaborate
Published 437d ago
test code
fn main() {
let mut x = 1000;
while x > 100 {
x = x - 100;
println!("{:?}", x)
}
}
Please login or sign up to comment and collaborate