mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
Add print formatting notes
This commit is contained in:
parent
a6f95d25dc
commit
1fa5b32832
1 changed files with 6 additions and 0 deletions
|
@ -34,6 +34,12 @@ Rust has a number of types named `Result` in its standard library: a generic `Re
|
|||
```rs
|
||||
// macro (funcs have no "!")
|
||||
println!("Value: {}", value); // {} is a placeholder for a value or variable
|
||||
println!("Values: {1}, {0}", value1, value2); // use index to print values
|
||||
println!("Num: {:<total_digits>.<decimal_digits>}", 10);
|
||||
println!("Num: {:0<total>.<decimal>}", 10); // prefix num with zeroes
|
||||
|
||||
println!("{:b}", 0b11011); // print as bits
|
||||
|
||||
print!();
|
||||
```
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue