summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-06-26 15:44:33 +0200
committermo8it <mo8it@proton.me>2024-06-26 15:44:33 +0200
commitc46d8bdf95c9a2025ee943feb208102a94b25ee6 (patch)
treeefb79459b51a73a9ce26fd8a01e8fe9f4f3d9dee
parent050a23ce6763fedf0906cd1c04b76888aae12f7d (diff)
errors3 solution
-rw-r--r--exercises/13_error_handling/errors3.rs21
-rw-r--r--rustlings-macros/info.toml4
-rw-r--r--solutions/13_error_handling/errors3.rs33
3 files changed, 46 insertions, 12 deletions
diff --git a/exercises/13_error_handling/errors3.rs b/exercises/13_error_handling/errors3.rs
index 2ef84f9..33a7b87 100644
--- a/exercises/13_error_handling/errors3.rs
+++ b/exercises/13_error_handling/errors3.rs
@@ -4,6 +4,17 @@
use std::num::ParseIntError;
+// Don't change this function.
+fn total_cost(item_quantity: &str) -> Result<i32, ParseIntError> {
+ let processing_fee = 1;
+ let cost_per_item = 5;
+ let qty = item_quantity.parse::<i32>()?;
+
+ Ok(qty * cost_per_item + processing_fee)
+}
+
+// TODO: Fix the compiler error by changing the signature and body of the
+// `main` function.
fn main() {
let mut tokens = 100;
let pretend_user_input = "8";
@@ -14,14 +25,6 @@ fn main() {
println!("You can't afford that many!");
} else {
tokens -= cost;
- println!("You now have {} tokens.", tokens);
+ println!("You now have {tokens} tokens.");
}
}
-
-fn total_cost(item_quantity: &str) -> Result<i32, ParseIntError> {
- let processing_fee = 1;
- let cost_per_item = 5;
- let qty = item_quantity.parse::<i32>()?;
-
- Ok(qty * cost_per_item + processing_fee)
-}
diff --git a/rustlings-macros/info.toml b/rustlings-macros/info.toml
index 2a4a24e..74cb79d 100644
--- a/rustlings-macros/info.toml
+++ b/rustlings-macros/info.toml
@@ -675,8 +675,8 @@ If other functions can return a `Result`, why shouldn't `main`? It's a fairly
common convention to return something like `Result<(), ErrorType>` from your
`main` function.
-The unit (`()`) type is there because nothing is really needed in terms of
-positive results."""
+The unit type `()` is there because nothing is really needed in terms of a
+positive result."""
[[exercises]]
name = "errors4"
diff --git a/solutions/13_error_handling/errors3.rs b/solutions/13_error_handling/errors3.rs
index 4e18198..63f4aba 100644
--- a/solutions/13_error_handling/errors3.rs
+++ b/solutions/13_error_handling/errors3.rs
@@ -1 +1,32 @@
-// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
+// This is a program that is trying to use a completed version of the
+// `total_cost` function from the previous exercise. It's not working though!
+// Why not? What should we do to fix it?
+
+use std::num::ParseIntError;
+
+// Don't change this function.
+fn total_cost(item_quantity: &str) -> Result<i32, ParseIntError> {
+ let processing_fee = 1;
+ let cost_per_item = 5;
+ let qty = item_quantity.parse::<i32>()?;
+
+ Ok(qty * cost_per_item + processing_fee)
+}
+
+fn main() -> Result<(), ParseIntError> {
+ // ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ added
+ let mut tokens = 100;
+ let pretend_user_input = "8";
+
+ let cost = total_cost(pretend_user_input)?;
+
+ if cost > tokens {
+ println!("You can't afford that many!");
+ } else {
+ tokens -= cost;
+ println!("You now have {tokens} tokens.");
+ }
+
+ // Added this line to return the `Ok` variant of the expected `Result`.
+ Ok(())
+}