Rich Errors (Rust)
fn main() {
let cool_array = ["for", "a", "moment"];
println!("{}", cool_array[5])
}
$ cargo build
Compiling thing v0.1.0 (/home/tylerm/Documents/rust/thing)
error: this operation will panic at runtime
--> src/main.rs:4:20
|
4 | println!("{}", cool_array[5])
| ^^^^^^^^^^^^^ index out of bounds: the length is 3 but the index is 5
|