summaryrefslogtreecommitdiff
path: root/info.toml
diff options
context:
space:
mode:
authorSanjay K <sanjaykdragon@users.noreply.github.com>2020-04-07 14:16:10 -0400
committerGitHub <noreply@github.com>2020-04-07 20:16:10 +0200
commit86b5c08b9bea1576127a7c5f599f5752072c087d (patch)
treef07a6c9b7c79712e5bd582544869940b7263f2d1 /info.toml
parent71d31256a6a60eb955d756385fa58a1ce140c6f7 (diff)
feat: Add Option2 exercise (#290)
* added option2 * changed up the exercise, modified the help section * Update exercises/option/option2.rs Co-Authored-By: fmoko <mokou@posteo.net> * Update exercises/option/option2.rs Co-Authored-By: fmoko <mokou@posteo.net> * Update exercises/option/option2.rs Co-Authored-By: fmoko <mokou@posteo.net> Co-authored-by: fmoko <mokou@posteo.net>
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml15
1 files changed, 15 insertions, 0 deletions
diff --git a/info.toml b/info.toml
index ec8da2c..04a90cf 100644
--- a/info.toml
+++ b/info.toml
@@ -535,6 +535,21 @@ pattern matching
"""
[[exercises]]
+name = "option2"
+path = "exercises/option/option2.rs"
+mode = "compile"
+hint = """
+check out:
+https://doc.rust-lang.org/rust-by-example/flow_control/if_let.html
+https://doc.rust-lang.org/rust-by-example/flow_control/while_let.html
+
+Remember that Options can be stacked in if let and while let.
+For example: Some(Some(variable)) = variable2
+
+
+"""
+
+[[exercises]]
name = "result1"
path = "exercises/error_handling/result1.rs"
mode = "test"