summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-07-04 19:46:09 +0200
committermo8it <mo8it@proton.me>2024-07-04 19:46:43 +0200
commit74831dd88f5f225ff940a9b321dc26c49a12e22d (patch)
tree6605bfec16d1b0d72295df6538a3ec6da78ad873 /exercises
parent0b220f9fffd02f77de1de79f510ae10c7c53b81f (diff)
Add TODO
Diffstat (limited to 'exercises')
-rw-r--r--exercises/quizzes/quiz1.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/quizzes/quiz1.rs b/exercises/quizzes/quiz1.rs
index 5f17514..afbf1f9 100644
--- a/exercises/quizzes/quiz1.rs
+++ b/exercises/quizzes/quiz1.rs
@@ -6,8 +6,8 @@
// Mary is buying apples. The price of an apple is calculated as follows:
// - An apple costs 2 rustbucks.
// - If Mary buys more than 40 apples, each apple only costs 1 rustbuck!
-// Write a function that calculates the price of an order of apples given the
-// quantity bought.
+// TODO: Write a function that calculates the price of an order of apples given
+// the quantity bought.
// Put your function here!
// fn calculate_price_of_apples(???) -> ??? {