chore: Run rustfmt on exercises

This commit is contained in:
Étienne Barrié
2020-08-10 10:24:21 -04:00
parent c4853ee6bb
commit 3144d3ae63
12 changed files with 30 additions and 25 deletions

View File

@@ -6,10 +6,10 @@
macro_rules! my_macro {
() => {
println!("Check out my macro!");
}
};
($val:expr) => {
println!("Look at this other macro: {}", $val);
}
};
}
fn main() {