If
Beginner · Fundamentals
if is the most basic type of control flow. Go does not have pattern matching so if is widely used.
Exercises
Section titled “Exercises”if1 test
Section titled “if1 test”Return the larger of two numbers using if.
Show hint
Use an if statement to compare a and b, and return the larger number.if2 test
Section titled “if2 test”Map each input string to an output with if/else.
Show hint
Implement fooIfFizz function by using if and else statements.