Guest User

Untitled

a guest
May 27th, 2018
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. (define (board p1 p2)
  2. (define cell (hc-append (vc-append p1 p2) (vc-append p2 p1)))
  3. (define row (vc-append cell cell cell cell))
  4. (hc-append row row row row))
  5.  
  6. (board
  7. (colorize (filled-flash 80 80) "purple")
  8. (board (circle 10) (colorize (circle 10) "white")))
Add Comment
Please, Sign In to add comment