Uh oh!
There was an error while loading. Please reload this page.
add println!() macro with out any arguments - #36825
Conversation
rust-highfive
commented
Sep 29, 2016
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @aturon (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
alexcrichton
commented
Sep 29, 2016
Thanks for the PR! This seems like a reasonable feature to me, especially given that we've got |
bluss
commented
Sep 29, 2016
@sbwtw It looks like these two tests failed due to the changes: You can find them inside |
sbwtw
commented
Sep 30, 2016
@bluss@alexcrichton hi, I have modified the test code. |
sinkuu
commented
Sep 30, 2016
What about letting |
sbwtw
commented
Sep 30, 2016
@sinkuu seems good, but I think its better to modify it in another commit. |
alexcrichton
commented
Sep 30, 2016
Thanks @sbwtw! This is tagged with |
alexcrichton
commented
Oct 3, 2016
@rfcbot fcp merge Seems like a neat feature to me! |
FCP proposed with disposition to merge. Review requested from: No concerns currently listed. |
alexcrichton
commented
Oct 10, 2016
@bors: r+ |
bors
commented
Oct 10, 2016
📌 Commit 7d6227a has been approved by |
bors
commented
Oct 11, 2016
add println!() macro with out any arguments lets add println!() to write "\n". like java https://docs.oracle.com/javase/7/docs/api/java/io/PrintStream.html#println()
bors
commented
Oct 11, 2016
rfcbot
commented
Oct 17, 2016
All relevant subteam members have reviewed. No concerns remain. |
rfcbot
commented
Oct 24, 2016
It has been one week since all blocks to the FCP were resolved. |
Allow `writeln!` without arguments, in symmetry with `println!` CC #36825.
lets add println!() to write "\n".
like java https://docs.oracle.com/javase/7/docs/api/java/io/PrintStream.html#println()