We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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