https://github.com/mberlanda/programming-elixir
https://github.com/mberlanda/programming-elixir
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mberlanda/programming-elixir
- Owner: mberlanda
- Created: 2019-01-21T17:14:18.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-16T22:25:34.000Z (about 5 years ago)
- Last Synced: 2024-10-19T11:29:23.209Z (8 months ago)
- Language: Elixir
- Size: 76.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)