1
0
Fork 0
LangPlayground/Elixir/hello.ex

8 lines
99 B
Elixir
Raw Normal View History

2024-12-15 21:52:23 +01:00
def MyModule do
def welcome do
IO.puts("Welcome To The Party")
end
end
MyModule.welcome()