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