1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/// Print formatted output to standard output using `print!`.
///
/// # Parameters
/// - `args`: A format string followed by optional expressions, just like in `print!`.
///
/// # Returns
/// - Nothing. This macro prints directly to standard output.
/// Print a newline character and flush the standard output buffer.
///
/// # Parameters
/// - (none): This macro takes no arguments.
///
/// # Returns
/// - Nothing. This macro prints `\n` and flushes the output.
/// Print formatted output with a newline and flush the standard output buffer.
///
/// # Parameters
/// - `args`: A format string followed by optional expressions, just like in `println!`.
///
/// # Returns
/// - Nothing. This macro prints to standard output and flushes the buffer.