Loops
By Bryce Summers
Nova ITP 100, Spring 2019
Control Flow
Infinite Loops
for(;;) while(True) while(1)
Game Loops: Finite Control flows
Conditionals and Finite Loops.
A Conditional is an expression that evaluates to a boolean value.
e.x. True, False, number < 1, variable1 == 3
Finite loops depend on conditionals that can be either True or False.
True means to continue looping.
False means to exit the loop.
Finite Loops