normal code: ```rust pub fn main() { println!("hello"); } ``` code that should be equivalent, but is actually more efficient ```rust #![feature(print_internals)] #![feature(const_fmt_arguments_new)] pub fn main() { ::std::io::_print(const { format_args!("hello\n") }); } ``` [godbolt link for asm comparison](https://rust.godbolt.org/z/bYvr38Pv3) <!-- TRIAGEBOT_START --> <!-- TRIAGEBOT_ASSIGN_START --> <!-- TRIAGEBOT_ASSIGN_DATA_START$${"user":null}$$TRIAGEBOT_ASSIGN_DATA_END --> <!-- TRIAGEBOT_ASSIGN_END --> <!-- TRIAGEBOT_END -->