mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-07 04:18:04 +08:00
7 lines
89 B
Rust
Executable File
7 lines
89 B
Rust
Executable File
fn main() {
|
|
let a = [1, 2, 3, 4, 5];
|
|
|
|
let first = a[0];
|
|
let second = a[1];
|
|
}
|