summaryrefslogtreecommitdiff
path: root/solutions/03_if/if1.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-05-22 15:04:21 +0200
committermo8it <mo8it@proton.me>2024-05-22 15:04:21 +0200
commitc8ad6c3960b4bec44a610cc144e6b635bffcbc31 (patch)
treee148a069d2aa38fce421f55656ef33dcca7ebdc7 /solutions/03_if/if1.rs
parent3bb71c6b0c9d58e421f79d914f5483cb5a98af0b (diff)
if1 solution
Diffstat (limited to 'solutions/03_if/if1.rs')
-rw-r--r--solutions/03_if/if1.rs33
1 files changed, 32 insertions, 1 deletions
diff --git a/solutions/03_if/if1.rs b/solutions/03_if/if1.rs
index 4e18198..079c671 100644
--- a/solutions/03_if/if1.rs
+++ b/solutions/03_if/if1.rs
@@ -1 +1,32 @@
-// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
+fn bigger(a: i32, b: i32) -> i32 {
+ if a > b {
+ a
+ } else {
+ b
+ }
+}
+
+fn main() {
+ // You can optionally experiment here.
+}
+
+// Don't mind this for now :)
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn ten_is_bigger_than_eight() {
+ assert_eq!(10, bigger(10, 8));
+ }
+
+ #[test]
+ fn fortytwo_is_bigger_than_thirtytwo() {
+ assert_eq!(42, bigger(32, 42));
+ }
+
+ #[test]
+ fn equal_numbers() {
+ assert_eq!(42, bigger(42, 42));
+ }
+}