In this Golang tutorial I cover the basics of control statments/structures: - If Statement - Else Statement - Else Statement - For (While) Loops - Switch Case I also cover important keywords like Break, Continue and Fallthrough. Understanding these control statements/structures and keywords are essential in order to become a good developer. If statements, else statements and switch cases are conditional blocks of code that determine what code will be excuted, and for (while) loops determine how many time a certain block of code will be executed Control statements determine where and when your code will execute and are responsible for determining the "cyclomatic complexity" (the varying number of alternative paths) of your program Timeline 00:00 Intro 00:40 If Statements 01:40 Else Statements 03:30 Else If statements 04:40 For (While) Loop 06:20 Break Keyword 06:45 Continue Keyword 08:25 For Range Loop 09:40 Swtich Case 11:29 Fallthrough Keyword