I'm following along on the "Advanced Solidity" tutorial here.
I ran into an example I'm having trouble understanding.
In this example, why does JUMP affect the state of the stack? I expected it to only affect the program counter.
(i.e. I would expect after JUMP, at PC: 11, the length of the stack would be 3, not 2. The JUMP comes after PUSH 0x0B.)
Thanks.