Packages

LPrimera libreria de luis andres

Current section

Files

Jump to
first_library lib first_library.ex
Raw

lib/first_library.ex

defmodule FirstLibrary do
@moduledoc """
Documentation for `FirstLibrary`.
"""
@doc """
Hello world.
## Examples
iex> FirstLibrary.hello()
:hola_mundo_de_parte_de_andres
"""
def hello do
:hola_mundo_de_parte_de_andres
end
end