
Create a module with one input and one output that behaves like a wire.

module TopModule (
  input in,
  output out
);

