Complete if section

This commit is contained in:
Paul Czeresko 2019-07-20 11:43:40 -04:00
parent d578d1966a
commit 3ee889c050

View file

@ -7,6 +7,7 @@ pub fn bigger(a: i32, b: i32) -> i32 {
// - another function call
// - additional variables
// Scroll down for hints.
if a > b { a } else { b }
}
// Don't mind this for now :)