Consider the following example of a LightBot program written out in text. Again, in this case we have named our robot "andy". When would andy jump?
f1: andy.move(); andy.turnRight(); andy.move(); main: andy.f1(); andy.f1(); andy.jump();
>The f1() method is run twice. This means andy would move, turn right, and move, then do it all over again