Word description Executes a quotation with inputs, preserving inputs and outputsTakes a quotation and a seq containing inputs for the quotationReturns a seq containing the inputs as well as any produced outputUseful for checking the behaviour of words under different inputs
! generating inputs using math.combinatorics
USING: continuations.extras kernel math.combinatorics prettyprint ;
{ t f } 2 all-selections [ xor ] with-datastacks . {
{ { t t } { f } }
{ { t f } { t } }
{ { f t } { t } }
{ { f f } { f } }
}