Much renaming and refreshing of RBE

This commit is contained in:
2023-09-24 20:46:41 -04:00
parent dc8045a20e
commit 7f4f627769
30 changed files with 36 additions and 28 deletions

View File

@@ -0,0 +1,18 @@
#[derive(Debug)]
struct Structure(i32);
#[derive(Debug)]
struct Deep(Structure);
fn main() {
println!("{:?} months in a year.", 12);
println!(
"{1:?} {0:?} is the {actor:?} name.",
"Slater",
"Christian",
actor = "actor's"
);
println!("Now {:?} will print!", Structure(3));
println!("Now {:?} will print!", Deep(Structure(7)));
}