1defmodule ElixirFile do 2 def main() do 3 "Hello, from the Elixir module!" 4 end 5end 6 7defmodule ElixirFileAgain do 8 def main() do 9 "Hello, from another Elixir module!" 10 end 11end