5 lines
93 B
Text
5 lines
93 B
Text
logic(a,b)={
|
|
print(a&b); \\ && is the same
|
|
print(a|b); \\ || is the same
|
|
print(!a);
|
|
};
|