Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Elixir - functional, concurrent, distributed programming for the rest of us

Elixir - functional, concurrent, distributed programming for the rest of us

Andrea Leopardi

October 26, 2018
Tweet

More Decks by Andrea Leopardi

Other Decks in Programming

Transcript

  1. VM

  2. defmacro if(condition, do: branch1, else: branch2) do quote do case

    unquote(condition) do true -> unquote(branch1) false -> unquote(branch2) end end end