An open API service indexing awesome lists of open source software.

https://github.com/kwchang0831/path-learning-elixir

✍Hands-on learning Elixir
https://github.com/kwchang0831/path-learning-elixir

elixir elixir-lang learn-to-code learning learning-by-doing

Last synced: about 1 year ago
JSON representation

✍Hands-on learning Elixir

Awesome Lists containing this project

README

          

# My Path of Learning Elixir

This is my path of learning Elixir. Learning by doing.

Inspired by [**30 Days of Elixir**](https://github.com/seven1m/30-days-of-elixir).

Please refer to [Contents](#contents) and each `.exs` script files for more details.

## Prerequisite

- Install Elixir: [https://elixir-lang.org/install.html](https://elixir-lang.org/install.html)

## Run

Get dependencies first

```shell
mix do deps.get
```

Run the specific exercise

```shell
mix run ./code/basic/00-HelloWorld.exs
```

## Contents

- ### [Basic](https://github.com/kwchang0831/path-learning-elixir/tree/main/code/basic)

- ### [Process](https://github.com/kwchang0831/path-learning-elixir/tree/main/code/process)

## Formatting

All `.exs` files are formatted using `mix format`, see `.formatter.exs`.

```shell
mix format
```