6 lines
99 B
Verilog

module hello;
initial begin
$display("hello world");
$finish;
end
endmodule