v4 Control Flowadd: for (init; cond; post)add: break; and continue;add: && and || (short-circuit)1 / 4
for loop shapefor (init; cond; post) { body } init oncecond before each iterationpost after each iteration2 / 4