Itil
Lazy printing and logging
## Examples
iex> I.p "sup"
"sup"
:ok
iex> I.p "some term",[1,2,3]
"some term"
[1, 2, 3]
:ok
iex> I.l "sup"
10:47:53.389 [info] "sup"
:ok
iex> I.l "some term", [1,2,4]
10:48:21.239 [info] some term
10:48:21.242 [info] [1, 2, 4]
:okInstallation
If available in Hex, the package can be installed
by adding itil to your list of dependencies in mix.exs:
def deps do
[{:itil, "~> 0.1.0"}]
endDocumentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/itil.