solutions/Structure and Interpretatio.../sicp-ex-1.2.rkt

7 lines
142 B
Racket
Raw Permalink Normal View History

2024-04-16 19:13:00 -04:00
(define the-numerator
(+ 5 4 (- 2 (- 3 (+ 6 (/ 4 5))))))
(define the-denominator
(* 3 (- 6 2)(- 2 7)))
(/ the-numerator the-denominator)