diff --git a/hello_world.v b/hello_world.v new file mode 100644 index 0000000..8c89812 --- /dev/null +++ b/hello_world.v @@ -0,0 +1,7 @@ +module hello_world_in_verilog; +initial + begin + $display ("Hello World"); + $finish; + end +endmodule \ No newline at end of file