fork download
  1. (define (power x y)
  2. (if (= y 0)
  3. 1
  4. (* x (power x (- y 1)))))
  5.  
  6. (display (power 4 3))
Success #stdin #stdout 0.02s 10848KB
stdin
Standard input is empty
stdout
64