Skip to content

Elixir in Action 2nd Edition by Saša Jurić - My notes and solutions.

License

Notifications You must be signed in to change notification settings

librity/elixir_in_action

Repository files navigation

Elixir in Action, 2nd Edition by by Saša Jurić

All my notes and solutions from the book.

  • behavior > behaviour 😝

mix format & Path

Path.wildcard("./*.{ex,exs}")
Path.wildcard("./**/*.{ex,exs}") |> Enum.count()
Path.wildcard("{config,lib,test}/**/*.{ex,exs}")

Path.wildcard("chapter_*/**/*.{ex,exs}") |> Enum.count()
Path.wildcard("{chapter_*}/**/*.{ex,exs}") |> Enum.count()

Concepts

Concurrency vs. Parallelism

About

Elixir in Action 2nd Edition by Saša Jurić - My notes and solutions.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages