Variadic Functions in Logo
Variadic functions can be called in the usual way with individual arguments:
If you already have multiple args in a list, apply them to a variadic function using func(*list)
like this:
When you run this script, the output will be:
Another key aspect of functions in Python is their ability to form closures, which we’ll look at next.
Next example: Closures.
```