Merge pull request #1140 from markusboehme/fix/options1/remove-unused-code

fix(options1): remove unused code
This commit is contained in:
liv 2022-08-12 10:24:58 +02:00 committed by GitHub
commit 2b0c73c7e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -3,11 +3,6 @@
// I AM NOT DONE
// you can modify anything EXCEPT for this function's signature
fn print_number(maybe_number: Option<u16>) {
println!("printing: {}", maybe_number.unwrap());
}
// This function returns how much icecream there is left in the fridge.
// If it's before 10PM, there's 5 pieces left. At 10PM, someone eats them
// all, so there'll be no more left :(