10 lines
169 B
Rust
10 lines
169 B
Rust
fn main() {
|
|
let a = [10, 20, 30, 40, 50];
|
|
let mut index = 0;
|
|
|
|
while index < 5 {
|
|
println!("the value is: {}", a[index]);
|
|
|
|
index += 1;
|
|
}
|
|
}
|