Current section
Files
Jump to
Current section
Files
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