// assert(expr[, message, ...]) // Panics assert!(1 == 2); // Panics with a message assert!(1 == 2, "The rules of the universe arent broken!");