7.3 Draw a star without the crossing lines

Scratch solution

View solution

This is just one of many possible solutions:

when green flag clicked
clear
set pen size to (3)
go to x: (50) y: (0)
pen down
repeat (6)
  move (50) steps
  turn cw (120) degrees
  move (50) steps
  turn ccw (60) degrees
  change pen color by (30)
end
pen up

Back to programming challenge