My Elixir stduies =)
Started from Programming Elixir of pragprog.
Run with:
$ elixir fizzbuzz/fizzbuzz_anonymous_functions.exs
and
$ elixir fizzbuzz/fizzbuzz_test.exs
Run with:
$ elixir my_list/my_list_test.exs
Run with:
$ elixir my_math/my_math_test.exs
Run with:
$ elixir my_factorial/my_factorial_test.exs
Run with:
$ elixir pipe_fizzbuzz/pipe_fizzbuzz_test.exs
The sample app created with mix on chapter 12
Run with the iex:
$ iex -S mix
Issues.CLI.main ["rails", "rails"]
Issues.CLI.main ["rails", "rails", "10"]
Run with mix run:
$ mix run -e 'Issues.CLI.main ["rails", "rails", "20"]'
Run as a executable:
$ mix escript.build
$ ./issues rails rails 10
Run the test with:
$ mix test
Generate docs with:
$ mix docs