circumference



Write a function that will compute the circumference of a circle given the radius


Solution

(define (circumference r)
  (* r (* 2 3.14)))