[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

false



Let me make sure I understand the proposal.

  (define (false-test) (list (eq? '() '#F) (not '())))

Currently a conforming Scheme implementation may return either (#T #T) or
(#F #T) as the value of (FALSE-TEST).  The proposal is to allow
implementations in which (#F #F) is returned.

It might be argued that (#T #T) and (#F #F) should be the only legal cases,
and (#F #T) should be eliminated.  But that is not the current proposal.
Correct?