Lesson 4: Conditionals — if & else
Until now our programs ran line after line, never stopping and never choosing. In this lesson we learn to make decisions: comparison operators like == and >= return 1 (true) or 0 (false), and if runs a code block only when the condition is true. else provides an alternative path that runs when the c