A collection of cheat sheets.
Hosted on GitHub Pages — Theme by mattgraham
case x do
[] -> ...
[x|xs] -> ...
end
cond do
is_foo?(x) -> deal_with_foo
is_bar?(x) -> deal_with_bar
end
if condition do
...
else
...
end
# Using keyword lists
if condition, do: ..., else: ...
unless condition do
...
end