1 2 3 4 5 6
module hello(input clk); always @(posedge clk) begin $display("hello."); $finish; end endmodule