www.fifi.org Documentation Manpages GNU Info Debian document tree Whole document tree Trigance web page Public services User info Mailing lists Secure server Multilingual usage
Copyright (C) 2000-2012 Philippe Troin <webmaster@fifi.org>.
Validate HTML Validate CSS
Whole document tree
(expt b n)
Returns b raised to the nth power for integer n >= 0.
Norman Walsh, <ndw@nwalsh.com>
(define (expt b n) ;; Exponentiation ;; (if (<= n 0) 1 (* b (expt b (- n 1)))))