Lets say we have:
((and (something1)(something2)(something3)(something4)) #t)
How does it compute it, does it test if all four are true or does it in pairs like:
((something1)and(something2)=true and((something3)and(something4)=true)) Then the whole thing is true???
Thanks.
((and (something1)(something2)(something3)(something4)) #t)
How does it compute it, does it test if all four are true or does it in pairs like:
((something1)and(something2)=true and((something3)and(something4)=true)) Then the whole thing is true???
Thanks.