Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gauravtiwari/elixir-koans
Practice elixir koans
https://github.com/gauravtiwari/elixir-koans
Last synced: 18 days ago
JSON representation
Practice elixir koans
- Host: GitHub
- URL: https://github.com/gauravtiwari/elixir-koans
- Owner: gauravtiwari
- Created: 2016-08-02T13:55:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-03T04:14:58.000Z (over 8 years ago)
- Last Synced: 2024-11-25T12:42:05.747Z (28 days ago)
- Language: Elixir
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Elixir Koans
[![Build Status](https://travis-ci.org/elixirkoans/elixir-koans.svg?branch=master)](https://travis-ci.org/elixirkoans/elixir-koans)
Elixir koans is a fun way to get started with the elixir programming language. It is a tour
of the most important features and idiomatic usage of the language.### Prerequisites
You need to have Elixir installed. Please refer to the [official guide](http://elixir-lang.org/install.html) for instructions.
Next, fetch mix dependencies by running:
```sh
$ mix deps.get
```You might get prompted to install further dependencies. Reply "y".
On Linux, you'll need to install `inotify-tools` to be able
to use the autorunner in this project.### Running
With the dependencies installed, navigate to the root directory of this project and run:
```sh
$ mix meditate
```You should see the first failure. Open the corresponding file in your favourite text editor
and fill in the blanks to make the koans pass one by one.
The autorunner will give you feedback each time you save.If you want the autorunner to show you your previous results, run it with `--no-clear-screen`
```sh
$ mix meditate --no-clear-screen
```### Contributing
We welcome contributions! If something does not make sense along the way or you feel
like an important lesson is missing from the koans, feel free to fork the project
and open a pull request.List of [contributors](CONTRIBUTORS.md).