7 lines
108 B
Text
7 lines
108 B
Text
|
|
f:=proc(a,b) a and b, a or b, not a; end proc:
|
||
|
|
|
||
|
|
f(true,true);
|
||
|
|
f(true,false);
|
||
|
|
f(false,true);
|
||
|
|
f(false,false);
|