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,8 @@
defmodule ServerTest do
use ExUnit.Case
doctest Server
test "greets the world" do
assert Server.hello() == :world
end
end

View file

@ -0,0 +1 @@
ExUnit.start()