You are looking at historical revision 2540 of this page. It may differ significantly from its current revision.

Deviations from the standard

 (letrec ((x 1) (y 2)) (cons x y))

is equivalent to

 (let ((x (void)) (y (void)))
   (set! x 1)
   (set! y 2)
   (cons x y) )

where R5RS requires

 (let ((x (void)) (y (void)))
   (let ((tmp1 1) (tmp2 2))
     (set! x tmp1)
     (set! y tmp2)
     (cons x y) ) )

Previous: Supported language

Next: Extensions to the standard