; most of this lecture was done on the board, but code examples are given below: (define (anonymize i) (overlay/xy (circle (/ (image-width i) 2) 'solid 'blue) 0 0 i)) (anonymize ) (define (is-mult-of-3 n) (integer? (/ n 3))) (is-mult-of-3 5)