From 1fa5b32832f4c7831ad236b79b3594e2e9937701 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Fri, 8 Oct 2021 22:29:46 +0200 Subject: [PATCH] Add print formatting notes --- Rust/Rust.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Rust/Rust.md b/Rust/Rust.md index f7409ef..ba6d7d0 100644 --- a/Rust/Rust.md +++ b/Rust/Rust.md @@ -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: {:.}", 10); +println!("Num: {:0.}", 10); // prefix num with zeroes + +println!("{:b}", 0b11011); // print as bits + print!(); ```