Init Elixir project

Starting fresh with...

```shell
mix new server
```
This commit is contained in:
William Carroll 2020-12-11 22:42:16 +00:00
parent c23a12746c
commit 6ff814a6d3
8 changed files with 107 additions and 0 deletions

View file

@ -0,0 +1,18 @@
defmodule Server do
@moduledoc """
Documentation for `Server`.
"""
@doc """
Hello world.
## Examples
iex> Server.hello()
:world
"""
def hello do
:world
end
end