Skip to content
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

fmt! does not depend on commas between arguments #4982

Closed
Kimundi opened this issue Feb 16, 2013 · 2 comments
Closed

fmt! does not depend on commas between arguments #4982

Kimundi opened this issue Feb 16, 2013 · 2 comments
Labels
A-syntaxext Area: Syntax extensions

Comments

@Kimundi
Copy link
Member

Kimundi commented Feb 16, 2013

This code

io::println(fmt!("String %s number %d" "foo" 13));

compiles and produces the same output as

io::println(fmt!("String %s number %d", "foo", 13));
@catamorphism
Copy link
Contributor

Not critical for 0.7. Nominating for milestone 1 (well-defined).

@graydon
Copy link
Contributor

graydon commented May 2, 2013

Accepted. The input to the fmt! macro needs to be written down.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-syntaxext Area: Syntax extensions
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants