ExLua
=====
[](https://hex.pm/packages/exlua)
[](https://hex.pm/packages/exlua)
[](https://unlicense.org/)
[](https://travis-ci.org/bendiken/exlua)
[](https://coveralls.io/github/bendiken/exlua)
[](https://gratipay.com/~bendiken/)
Lua for Elixir.
## Examples
```elixir
[42.0] = Lua.State.new |> Lua.eval!("return 6 * 7")
```
## Installation
Add `exlua` to your list of dependencies in your project's `mix.exs` file:
```elixir
defp deps do
[{:exlua, "~> 0.1.0"}]
end
```
Alternatively, to pull in the dependency directly from a Git tag:
```elixir
defp deps do
[{:exlua, github: "bendiken/exlua", tag: "0.1.0"}]
end
```
Alternatively, to pull in the dependency directly from a Git branch:
```elixir
defp deps do
[{:exlua, github: "bendiken/exlua", branch: "master"}]
end
```