| | \ \ \ / _ \ _ \ _` | _ \ -_) _| | / -_) _| \_/\_/\___/\___/\__,_|.__/\___|\__|_\_\\___|_| _|
Create a woodpecker script that takes 1-bit a and 1-bit b and does 1 bit addition with carry.
a
b
a | b | output -------------- 0 | 0 | 00 1 | 0 | 10 0 | 1 | 10 1 | 1 | 01