数组
rust
fn main() {
// [类型; 数组长度]
let nums: [i32; 3] = [1, 2, 3];
println!("{:?}", nums);
println!("{}", nums[1]);
}