Press the Green Flag to draw a recursive Koch Snowflake.
This is an example of a recursive figure. It is called the "Koch Snowflake", and it is done with a function (a block) that is called recursively. Recursive blocks call themselves. To avoid an infinite loop, it needs to test for a termination condition (depth=0). In each iteration, the line is replaced by a triangular hat.