From caac1b3bfadc817f110efafaea5aea368eafdcbf Mon Sep 17 00:00:00 2001
From: Simon Halimi <halimisimon@gmail.com>
Date: Tue, 13 Apr 2021 14:48:40 +0200
Subject: [PATCH] quizz1 done

---
 exercises/quiz1.rs | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/exercises/quiz1.rs b/exercises/quiz1.rs
index 5c5c355..cb1de5f 100644
--- a/exercises/quiz1.rs
+++ b/exercises/quiz1.rs
@@ -7,10 +7,13 @@
 // more than 40 at once, each apple only costs 1! Write a function that calculates
 // the price of an order of apples given the order amount. No hints this time!
 
-// I AM NOT DONE
+fn calculate_apple_price(amount: i32) -> i32 {
+    if(amount < 40){
+        return amount * 2;
+    }
 
-// Put your function here!
-// fn ..... {
+    return amount;
+}
 
 // Don't modify this function!
 #[test]