mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 13:19:29 +08:00
8 lines
No EOL
148 B
Text
8 lines
No EOL
148 B
Text
# module_name.ex
|
|
defmodule ModuleName do
|
|
def hello do
|
|
IO.puts "Hello World"
|
|
end
|
|
end
|
|
|
|
# From https://elixir-lang.org/crash-course.html#elixir |