-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
about std output #69013
Comments
A RFC for implicit named arguments in formatting macros was accepted in rust-lang/rfcs#2795 |
The feature is not implemented yet :) the best way to stay updated on its progress is to subscribe to the tracking issue. |
OK! Thank U!!! Waiting for updates。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I very like the Rust lang, We strongly hope to add syntax to template output:
fn main(){
let string = “test”;
println!("${string}");
// "test"
//or
println!("{string}");
// "test"
}
The text was updated successfully, but these errors were encountered: