7.1 Draw a 5-pointed star

Scratch solution

View solution

This is just one of many possible solutions:

when green flag clicked
clear
set pen size to (3)
pen down
repeat (5)
  move (200) steps
  turn cw ((180) - (36)) degrees
end
pen up

Back to programming challenge