I\'m reading The Rust book and I run across this example:
fn main() { let a = [1, 2, 3, 4, 5]; let index = 10; let element = a[index]; print