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