Test the Elixir code in your markdown!
iex> 1 + 2
3
defmodule MyModule do
def add(x, y), do: x + y
end
iex> x = 1
...> y = 2
...> MyModule.add(x, y)
3
iex> MyModule.add(1, 2)
3
defmodule OtherModule do
def sweet_map, do: %{sweet: :cool}
end
iex> OtherModule.sweet_map()
%{
sweet: :cool
}