Draw Circle
Draw Diamond
Draw Star
25
These are the functions you will call:
Loops are great when you want to repeat the same actions
many times in a row. But what if you want to do other things in
between? That’s when you use a
function
. This is a function block.
You can put code in it the same way that you put code into a
repeat
loop.
The difference is that each function has its own name, and you can
call a function
from anywhere in your program!
Use functions to help Elsa draw a series of shapes. In your notebook, write the functions
in the correct order to create this design.
hint
: Elsa will draw the shapes from left to right.
Functions