panic!

Panics will print a failure message, unwind, clean up the stack, and quit.

fn main() {
    panic!("crash and burn");
}