trpl-zh-cn/listings/ch03-common-programming-concepts/no-listing-14-array-indexing/src/main.rs

7 lines
89 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
let a = [1, 2, 3, 4, 5];
let first = a[0];
let second = a[1];
}