From f082ff9634425cafc32b8447158a8ea33ecea80c Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Sun, 15 Dec 2024 21:52:23 +0100 Subject: [PATCH] Add: Elixer hello world --- Elixir/hello.ex | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Elixir/hello.ex diff --git a/Elixir/hello.ex b/Elixir/hello.ex new file mode 100644 index 0000000..840494c --- /dev/null +++ b/Elixir/hello.ex @@ -0,0 +1,7 @@ +def MyModule do + def welcome do + IO.puts("Welcome To The Party") + end +end + +MyModule.welcome()