(define (power x y) (if (= y 0) 1 (* x (power x (- y 1))))) (display (power 4 3))
Standard input is empty
64
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!