First commit

This commit is contained in:
Mariano Uvalle 2020-06-20 13:57:33 -05:00
commit 1dba0af064
36 changed files with 1065 additions and 0 deletions

7
script.exs Normal file
View file

@ -0,0 +1,7 @@
defmodule MyModule do
def run do
IO.puts("Called MyModule run!")
end
end
MyModule.run()