Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Update from the Elixir team - 2022

Update from the Elixir team - 2022

Andrea Leopardi

May 20, 2022
Tweet

More Decks by Andrea Leopardi

Other Decks in Programming

Transcript

  1. 1.13 defmodule MixMarkdownFormatter do @behaviour Mix.Tasks.Format def features(_opts) do [sigils:

    [:M], extensions: [".md", ".markdown"]] end def format(contents, opts) do # ... end end
  2. 1.14 int = 1 bin = "foo" int <> bin

    ** (ArgumentError) argument error
  3. 1.14 int = 1 bin = "foo" int <> bin

    ** (ArgumentError) construction of binary failed: segment 1 of type 'binary': expected a binary but got: 1