rustfmt the exercises

Signed-off-by: Eddy Petrisor <eddy.petrisor@gmail.com>
This commit is contained in:
Eddy Petrisor
2019-05-22 14:48:32 +03:00
parent a53b3f199f
commit 9aec4abc4d
4 changed files with 17 additions and 11 deletions

View File

@@ -11,7 +11,10 @@ fn main() {
println!("The last item in the list is {:?}", last);
let second_to_last = list.pop().unwrap();
println!("The second-to-last item in the list is {:?}", second_to_last);
println!(
"The second-to-last item in the list is {:?}",
second_to_last
);
}