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