Skip to content

Instantly share code, notes, and snippets.

@bmitch
Last active August 31, 2019 05:14
Show Gist options
  • Save bmitch/67df9a22613c4c4a5bc02d732fcad1e5 to your computer and use it in GitHub Desktop.
Save bmitch/67df9a22613c4c4a5bc02d732fcad1e5 to your computer and use it in GitHub Desktop.
elixir.md

Elixir Notes

Misc notes

  • String concatenation:
  def hello(name) do
    "Hello, " <> (name) <> "!"
  end
  def hello(name) do
    "Hello, #{name}!"
  end

Style Guide

Tutorials to try

Other

Example programs

Books

Scraping

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment