All my notes and solutions from the book.
- behavior > behaviour 😝
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()