docs
docs
Brush command: The brush command is used to determine the color, length, and
width of an object. Once again, it is being used to apply the project's sticker.
Loop command: Instead of typing a block of statements again and again, we can
use a for loop around the block of statements. The most common usage of a for
loop is simply to use it as a counting loop to execute a block of code a certain
number of times.
Here is a typical construct for loop used to count from 0 to 3 to execute the block
of code 4 times:
condition i < 4; is checked before each iteration, to see if the block of statements
should execute or not. If i is less than 4.
increment i++ is executed after every iteration, after the block of statements is
executed. Increase (increment) i by 1.