Move index up

This commit is contained in:
Justin Ethier 2016-12-09 23:49:42 -05:00
parent 0723bb3cdf
commit 11ec4d7508

View file

@ -8,6 +8,8 @@ Like an ordinary `and`, an `and-let*` special form evaluates its arguments -- ex
See the [SRFI document](http://srfi.schemers.org/srfi-2/srfi-2.html) for more information. See the [SRFI document](http://srfi.schemers.org/srfi-2/srfi-2.html) for more information.
- [`and-let*`](#and-let)
# Rationale # Rationale
In case of an ordinary and formed of proper boolean expressions: In case of an ordinary and formed of proper boolean expressions:
@ -53,8 +55,6 @@ expression E2, if it gets to be evaluated, knows that E1 has returned non-#f. Mo
`and-let*` is also similar to an "anaphoric AND" LISP macro [Rob Warnock, comp.lang.scheme, 26 Feb 1998 09:06:43 GMT, Message-ID: 6d3bb3$3804h@fido.asd.sgi.com]. `and-let*` allows however more than one intermediate result, each of which continues to be bound through the rest of the form. `and-let*` is also similar to an "anaphoric AND" LISP macro [Rob Warnock, comp.lang.scheme, 26 Feb 1998 09:06:43 GMT, Message-ID: 6d3bb3$3804h@fido.asd.sgi.com]. `and-let*` allows however more than one intermediate result, each of which continues to be bound through the rest of the form.
- [`and-let*`](#and-let)
# and-let* # and-let*
*Syntax* *Syntax*