Collection of short exercises to learn the Elixir language. Inspired by lambdaclass/erlings.
To learn about the language syntax, please take a look at Elixir's Getting Started guide.
To get started, you will need a working installation of Elixir. We recommend using a version manager such as asdf.
For MacOS:
$ brew install asdf
$ asdf plugin-add elixir
$ asdf install elixirThen clone the repository:
$ git clone https://www.github.com/northernlabs/elixir_katasYou will have to write implementations for the functions in the ElixirKatas project and get all the tests passing.
Run
$ mix katasand follow the instructions to get started.
If you get stuck, you can review our solutions in the solutions branch:
$ git checkout solutions