Skip to content

Instantly share code, notes, and snippets.

@sawthinkar
Forked from bmitch/elixir.md
Created February 7, 2018 09:01
Show Gist options
  • Save sawthinkar/f80876f64a88eb8b5e13ec4804996178 to your computer and use it in GitHub Desktop.
Save sawthinkar/f80876f64a88eb8b5e13ec4804996178 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