let font_size = 14;let font_family = "Arial";let style = format!( "font-size: {font_size};font-family: {font_family}");//style is "font-size: 14;font-family: Arial"println!(r#"style is "{style}""#);