Now that we've understood booleans, we can put them to real use with loops.

First up, the while loop, which repeats a code snippet over and over until a condition that it's given isn't met anymore.

Indeed! The while loop will display "Ruby " and add 1 to count variable while it's less than 4.

Are you sure that this is ever going to run? Is 0ever greater than 4?