Is this any less efficient ``` let _ = write!(output.text, ", florp {:1}", florp as u8); let _ = write!(output.text, ", borp {:7}", borp as i32); let _ = write!(output.text, ", qorp {:4}", borp as i8); ``` than ``` let _ = write!(output.text, ", florp {:1}, borp {:7}, qorp {:4}", florp as u8, borp as i32, qorp as i8); ``` I feel like the compiler probably might not be smart enough to combine them