Add not and printing functions
[jackhill/mal.git] / elixir / mix.exs
1 defmodule Mal.Mixfile do
2 use Mix.Project
3
4 def project do
5 [app: :mal,
6 version: "0.0.1",
7 elixir: "~> 1.0",
8 build_embedded: Mix.env == :prod,
9 start_permanent: Mix.env == :prod,
10 deps: deps]
11 end
12
13 # Configuration for the OTP application
14 #
15 # Type `mix help compile.app` for more information
16 def application do
17 [applications: [:logger]]
18 end
19
20 # Dependencies can be Hex packages:
21 #
22 # {:mydep, "~> 0.3.0"}
23 #
24 # Or git/path repositories:
25 #
26 # {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
27 #
28 # Type `mix help deps` for more examples and options
29 defp deps do
30 []
31 end
32 end