From 7df0f8daf9e81048f71fb94ae0194362a9eb700d Mon Sep 17 00:00:00 2001 From: Chris Cody <3807221+aussiechris@users.noreply.github.com> Date: Sat, 8 Oct 2022 21:29:54 +1100 Subject: [PATCH] quiz 1 complete --- exercises/quiz1.rs | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/exercises/quiz1.rs b/exercises/quiz1.rs index dbb5cdc9..41e8a556 100644 --- a/exercises/quiz1.rs +++ b/exercises/quiz1.rs @@ -10,10 +10,14 @@ // Write a function that calculates the price of an order of apples given // the quantity bought. No hints this time! -// I AM NOT DONE - // Put your function here! -// fn calculate_price_of_apples { +fn calculate_price_of_apples(quantity: i32) -> i32 { + if quantity > 40 { + quantity + } else { + quantity * 2 + } +} // Don't modify this function! #[test]