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