The Scheme standards call else
, as used in a cond
form, auxiliary syntax. R6RS shows one possible implementation of cond
using syntax-rules
; here else
is called a <literal>:
(define-syntax cond
(syntax-rules (else =>)
((cond (else result1 result2 ...))
(begin result1 result2 ...))
;; ...
Note that else
is not a replacement for #t
. A <literal> is an identifier that is used to match input subforms; it is treated as a syntactic keyword within the syntax-rules
form.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…