The program: ``` rust fn main() { println!("{}", "\"\\\\\"") } ``` prints out: ``` "\\" ``` But the program: ``` rust fn main() { println!("\"\\\\\"") } ``` prints out: ``` "\" ``` They ought to be the same.