summaryrefslogtreecommitdiff
path: root/solutions/03_if/if1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'solutions/03_if/if1.rs')
-rw-r--r--solutions/03_if/if1.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/solutions/03_if/if1.rs b/solutions/03_if/if1.rs
index 079c671..8512a60 100644
--- a/solutions/03_if/if1.rs
+++ b/solutions/03_if/if1.rs
@@ -1,9 +1,5 @@
fn bigger(a: i32, b: i32) -> i32 {
- if a > b {
- a
- } else {
- b
- }
+ if a > b { a } else { b }
}
fn main() {