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
Code Reviewing Like a Champion
maltzj
524
40k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
7
740
The Cult of Friendly URLs
andyhume
79
6.5k
The Cost Of JavaScript in 2023
addyosmani
51
8.5k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
PRO
181
54k
Product Roadmaps are Hard
iamctodd
PRO
54
11k
GraphQLとの向き合い方2022年版
quramy
49
14k
We Have a Design System, Now What?
morganepeng
53
7.7k
The Illustrated Children's Guide to Kubernetes
chrisshort
48
50k
The World Runs on Bad Software
bkeepers
PRO
69
11k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
8
820
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
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