; signature: rect-area: number number -> number
; purpose: expects the length and width of a rectangle in
; the same units, and produces the area of that rectangle
; in square units
(define (rect-area length width)
(* length width)
)
(check-expect (rect-area 45 10)
450)
(rect-area 314 56.78)