Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Fun with Elixir and the Erlang VM
Search
yawnt
October 05, 2013
2
250
Fun with Elixir and the Erlang VM
Introduction to Elixir, a metaprogramming friendly language that runs on the top of the Erlang VM.
yawnt
October 05, 2013
Tweet
Share
More Decks by yawnt
See All by yawnt
NixOS - Purely Functional Package Management
yawnt
0
1.7k
Open Source as A Service
yawnt
0
210
Featured
See All Featured
Designing Experiences People Love
moore
142
24k
Faster Mobile Websites
deanohume
308
31k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
Building an army of robots
kneath
306
45k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
47
9.6k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
22k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
44
2.4k
Practical Orchestrator
shlominoach
189
11k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
21
1.3k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
181
54k
Transcript
ELIXIR and the Erlang VM Fun with
YAWNT Hey, i’m on &
NODEJITSU I do at
LAZY Erlang concepts for the and the IMPATIENT
functional Erlang is a language
awesome As such, it has lots of features
data Functions are
REcursion It uses to solve problems
Guards
pattern matching
Referential transparency
PROCESSes... But
Unique ... make Erlang
concurrent Processes are
MESSAGES They use to communicate
picture shamelessly ripped from learnyousomEerlang
PEOPLE Processes are like
indEpendent They are
fault They are tolerant
isolated They are
distributed They are
BEAM Why a language on VM ? Recap
concurrent It is and DISTRIBUTED
FAULT tolerant It is
OTP It can use
None
OLD But Erlang is
macros Silly
syntax Clunky
flexibility Little
None
Modern What if we could use a language
None
$ git clone \ https://github.com/elixir-lang/elixir.git \ .elixir $ cd .elixir
$ make test $ echo "PATH=$HOME/.elixir/bin" >> .zshrc $ source .zshrc
“ Elixir is a metaprogrammable, functional language built atop the
Erlang VM. It is a dynamic language with hygIenic macros that leverages Erlang's ability to build concurrent, distributed, and fault-tolerant applications with hot code upgrades.“ @JosEValim
GOODNESS All the Erlang
PLUS
SYNTAX It has Ruby-inspired
defmodule Hi do def greetings do IO.puts "hi 33dev!" end
end
FRIENDLY It is DSL
defmodule ATest do use ExUnit.Case test "true should be true"
do assert(true == true) end end
MACROS It has powerful
defmodule MacroTest do defmacro if_not(pred, block) do quote do if(!unquote(pred))
do unquote(block) end end end def try_unless do if_not 1==2 do IO.puts "hey" end end end
protocols It has
defprotocol Blank do def blank?(data) end defimpl Blank, for: List
do def blank?([]), do: true def blank?(_), do: false end
Records It has sane
defrecord Trento, [people: nil, students: 0] do def get_people(city) do
city.people end end
“ Elixir is the son of ERLANG and RUBY, but
Ruby missed out and the real father is LisP.“ @DCH__
None
questions? or hit me up later
</talk> Thanks for listening
NEXT this talk Erlang/OTP in Action elixir-lang.org
Elixir google groups Programming Elixir