README.md

# KeySigil

Provides `~K()` sigil for short keyword list creation.

See the Example:

```elixir
# …
import KeySigil

a = "bananas"
b = "float"
def c, do: "high"

~K(a b c)
=> [a: "bananas", b: "float", c: "high"]
```