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

https://github.com/mberlanda/programming-elixir


https://github.com/mberlanda/programming-elixir

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Programming Elixir

Examples and exercises from

## Intro

```
elixir intro/hello.exs
iex
iex(1)> c "intro/hello.exs"
Hello, World!
[]
```

## Part 1 Conventional Programming

* [ch02 Pattern Matching](pattern-matching.md)
* [ch03 Immutability](immutability.md)
* [ch04 Elixir Basics](basic-types.md)
* [ch05 Anonymous Functions](functions.md)
* [ch06 Modules and Named Functions](modules-named-functions.md)
* [ch07 Lists and Recursion](lists-recursion.md)
* [ch08 Maps, Keyword Lists, Sets, and Structs](maps-keyword-lists.md)
* [ch09 An Aside—What Are Types?](aside-types.md)
* [ch10 Processing Collections—Enum and Stream](processing-collections.md)