Current section
Files
Jump to
Current section
Files
lib/crypto_practices.ex
defmodule CryptoPractices do
@moduledoc """
Documentation for CryptoPractices.
"""
@doc """
Hello world.
## Examples
iex> CryptoPractices.hello()
:world
"""
def hello do
:world
end
end