From 13b2826b20a4ac76df90a5067e97c4845ac03e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ahmet=20Kaan=20G=C3=9CM=C3=9C=C5=9E?= <96421894+Tahinli@users.noreply.github.com> Date: Fri, 25 Oct 2024 15:20:43 +0300 Subject: [PATCH] feat: :sparkles: hello world --- 00-hello_world/hello_world.v | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 00-hello_world/hello_world.v diff --git a/00-hello_world/hello_world.v b/00-hello_world/hello_world.v new file mode 100644 index 0000000..2024ea2 --- /dev/null +++ b/00-hello_world/hello_world.v @@ -0,0 +1,6 @@ +module hello_world; + initial begin + $display ("Hello World"); + $finish; + end +endmodule \ No newline at end of file