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