Created
December 11, 2017 02:12
-
-
Save bunnymatic/539752a7c73d0793c2c2e13740c720e4 to your computer and use it in GitHub Desktop.
Elixir Inspector
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Inspector do | |
def inspector(v,s), do: (IO.puts("[#{s}] #{inspect(v)}"); v) | |
def inspector(v), do: (IO.puts("[check] #{inspect(v)}"); v) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment