normal code:
pub fn main() {
println!("hello");
}
code that should be equivalent, but is actually more efficient
#![feature(print_internals)]
#![feature(const_fmt_arguments_new)]
pub fn main() {
::std::io::_print(const { format_args!("hello\n") });
}
godbolt link for asm comparison