Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 422 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 422 Bytes

elixir_lunch

Lunch and learn agenda for elixir

Number one

  1. Why Elixir?

  2. Basic language intro a. ints, floats, and strings behave much like ruby b. lists are linked lists, [thing | tails] c. Maps are like hashes but with a different syntax and access

  3. Pattern matching

  4. Functions Here's how you write a function Function diagram

  5. Piping

  6. Control flow

  • case
  • no ifs
  • response conventions