Packages

Simple CSV and TSV parser (NimbleCSV wrapper)

Current section

Files

Jump to
yuki lib yuki.ex
Raw

lib/yuki.ex

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