#reader(lib "htdp-beginner-reader.ss" "lang")((modname image-question) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f ())))
(define WIDTH 320)
(define HEIGHT 480)
(define t1 (text (cond [(image? 42)
"blah"]
[else
"yes"])
10
"black"))
(define t2 (text (cond [(image? (circle 20 "solid" "red"))
"yes"]
[else
"blah"])
10
"black"))
(define (draw-scene y)
(place-image t2 0 30
(place-image t1
0 0
(empty-scene WIDTH HEIGHT))))
(big-bang WIDTH HEIGHT 0
(on-redraw draw-scene))