Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 1.34 KB

README.md

File metadata and controls

18 lines (15 loc) · 1.34 KB

Elixir Examples

Modules directory structure

In this example, we will learn, how to name directories, files and module names.

  • Directory/file names should be lower case with words separate using _ (underscore).
  • Module names should be in camel case. Parent and child modules are separated by . (dot), it shows hierarchy of the module tree.

Struct

In this example, we will learn about structs

Exercism

This repo contains my solutions to https://github.com/exercism/elixir