Skip to content

Not gate

4YCAaaa edited this page Jan 4, 2023 · 1 revision
  • Not gate:
  • out = not in
CHIP Not {
    IN in;
    OUT out;

    PARTS:
    // Put your code here:
    Nand(a=in, b=in, out=out);
}
Clone this wiki locally