Here's what's in the directories:
The code from the Example module in a single elixir script so we can run it
in iex like this:
$ cd iex_example
$ iex example.exs
Erlang/OTP 18 [erts-7.3] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false] [dtrace]
Interactive Elixir (1.2.6) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> Example.sum([5, 0.1, -100])
-94.9
A directory with instructions for using mix to set up an example project
into which we can copy the content of iex_example/example.exs and run the
doctests, generate documentation, use dialyzer etc.
A part of one of the problems from http://adventofcode.com solved in perl5, and a couple of elixir solutions.
Inspired by Michał Wojciechowski's perl.org blog post solving a simple logic problem using brute force.