no instructions yet, working on the begin_fill / end_fill part of the code below, not sure how to do that in scratch yet
looking at scratch version of "turtle star" graphic example on https://docs.python.org/3/library/turtle.html#introduction from turtle import * color('red', 'yellow') begin_fill() while True: forward(200) left(170) if abs(pos()) < 1: break end_fill() done()