Skip to content

Instantly share code, notes, and snippets.

View tokoyax's full-sized avatar
🏠
Working from home

Takuya Aoki tokoyax

🏠
Working from home
View GitHub Profile
@tokoyax
tokoyax / mix.exs
Last active November 17, 2017 12:31
mix.exs
defmodule No.Mixfile do
use Mix.Project
def project do
[
app: :no,
version: "0.1.0",
elixir: "~> 1.5",
escript: escript_config(),
start_permanent: Mix.env == :prod,
@tokoyax
tokoyax / no.exs
Last active November 17, 2017 11:54
no
defmodule No do
@moduledoc """
Documentation for No.
"""
def main(args) do
args
|> parse_args()
|> run()
|> wait()