Concise Summary
(sequential convention applies)
l
and(1, 1) => 1;
l
and(x, y) => 0;
l
or(0, 0) => 0;
l
or(x, y) => 1;
l
not(0) => 1;
l
not(1) => 0;
l
implies(1, 0) => 0;
l
implies(x, y) => 1;