Init Elixir project
Starting fresh with... ```shell mix new server ```
This commit is contained in:
parent
c23a12746c
commit
6ff814a6d3
8 changed files with 107 additions and 0 deletions
18
assessments/semiprimes/server/lib/server.ex
Normal file
18
assessments/semiprimes/server/lib/server.ex
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue