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()