mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-06 11:48:03 +08:00
8 lines
123 B
Rust
8 lines
123 B
Rust
fn main() {
|
|
let a = [10, 20, 30, 40, 50];
|
|
|
|
for element in a {
|
|
println!("the value is: {element}");
|
|
}
|
|
}
|