
Create a module that implements a NOT gate.

module TopModule (
  input in,
  output out
);

