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
- Host: GitHub
- URL: https://github.com/kwchang0831/path-learning-elixir
- Owner: kwchang0831
- License: mit
- Created: 2022-02-13T21:55:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-23T07:14:07.000Z (over 4 years ago)
- Last Synced: 2025-02-13T07:15:19.359Z (over 1 year ago)
- Topics: elixir, elixir-lang, learn-to-code, learning, learning-by-doing
- Language: Elixir
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```