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.
2 parents 351a969 + 770ce89 commit 1e284cdCopy full SHA for 1e284cd
src/hello/print.md
@@ -4,8 +4,10 @@ Printing is handled by a series of [`macros`][macros] defined in [`std::fmt`][fm
4
some of which include:
5
6
* `format!`: write formatted text to [`String`][string]
7
-* `print!`: same as `format!` but the text is printed to the console.
+* `print!`: same as `format!` but the text is printed to the console (io::stdout).
8
* `println!`: same as `print!` but a newline is appended.
9
+* `eprint!`: same as `format!` but the text is printed to the standard error (io::stderr).
10
+* `eprintln!`: sames as `eprint!`but a newline is appended.
11
12
All parse text in the same fashion. A plus is that the formatting correctness will
13
be checked at compile time.
0 commit comments