;;; Scheme Recursive Art Contest Entry ;;; ;;; Please do not include your name or personal info in this file. ;;; ;;; Title: ;;; ;;; Description: ;;; This is a target. ;;; Everything moves into it. ;;; What is your target? (define (draw) ; *YOUR CODE HERE* (define (target r x y hue) (setposition x y) (begin_fill) (color hue) (circle r) (end_fill) (penup) ) (hideturtle) (color "white") (target 100 -200 0 "red") (target 70 -200 0 "white") (target 40 -200 0 "red") (target 100 100 0 "red") (target 70 70 0 "white") (target 40 40 0 "red") (target 100 400 0 "red") (target 70 340 0 "white") (target 40 280 0 "red") (exitonclick) ) ; Please leave this last line alone. You may add additional procedures above ; this line. All Scheme tokens in this file (including the one below) count ; toward the token limit. (draw)