Typo in the SRFI Scott G. Miller 31 May 2002 06:26 UTC
Just would like to point out that you're one parenthesis shy in your
example code.

(define F (procedure (F N)
                ((procedure (G K L)
                   (if (zero? K) L
                     (G (- K 1) (* K L)))) N 1)))
                                                ^

	Scott

--