We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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