i'm not too sure why my Nand2tetris simulator keep telling me line 3 error. can anyone tell me any problem with the following code:
CHIP Xor {
IN a, b;
OUT out;
PARTS:
Not(in=a, out=nota);
Not(in=b, out=notb);
And(a=a, b=notb, out=m);
And(a=nota, b=b, out=n);
Or(a=m, b=n, out=out);
}