| | \ \ \ / _ \ _ \ _` | _ \ -_) _| | / -_) _| \_/\_/\___/\___/\__,_|.__/\___|\__|_\_\\___|_| _|
Create a woodpecker script that takes 1-bit a and 1-bit b and calculates the XOR a^b.
a
b
a^b
a | b | output -------------- 0 | 0 | 0 1 | 0 | 1 0 | 1 | 1 1 | 1 | 0