Lock in $30 Savings on PRO—Offer Ends Soon! ⏳

Elixir - functional, concurrent, distributed pr...

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

Avatar for Andrea Leopardi

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