On this page:
3.1 Image To Code Kata
3.2 Overlay Kata

3 Day 3 – Overlay

REVIEW Beside and above

3.1 Image To Code Kata

read
Write the simplest code possible to make this shape:
image
(Note: This shape is 50 pixels wide and 50 pixels tall)
code
#lang racket
(require 2htdp/image)
 
(square 50 'solid 'blue)

3.2 Overlay Kata

read
Write the simplest code possible to make this shape:
image
(Note: This shape is 80 pixels wide and 80 pixels tall)
code
#lang racket
(require 2htdp/image)
 
(overlay
  (square 50 'solid 'blue)
  (square 80 'solid 'purple))