Q
Quick and dirty debugging output for Elixir programmers
Inspired from similar project for python
There is also a golang version here
Installation
The package can be installed by adding qq to your list of dependencies in mix.exs:
def deps do
[{:qq, "~> 0.1.1"}]
end
Documentation is available on HexDocs.
(Possibly) FAQ
Since no one knows about this yet, no one asking questions (yet) ;)
Why Q.q?
It's quick to type and unlikely to cause naming collisions.
Why name the hex package qq?
I started as just q, but when publishing, I got an error that the hex package
must have at least two letters. At first I used qdbg, but then switched to
qq
Credit
I came across this idea via y0assar1an's golang implementation, which points to zestyping's original package for python.
Needless to say, first I thank zestyping for the original idea.
I thank Jose Valim for creating elixir lang :)
I thank Jeffery Baird for his post on how to create hex package.