> For the complete documentation index, see [llms.txt](https://montrealelixir.gitbook.io/playbook/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://montrealelixir.gitbook.io/playbook/trails/lang.md).

# Elixir Lang

## Getting started

* Get motivated: [Keynote: Think Different by Dave Thomas](https://www.youtube.com/watch?v=5hDVftaPQwY)
* Learn the basics: [Elixir Guides](http://elixir-lang.org/getting-started/introduction.html)
* Read the book: [Programming Elixir](https://pragprog.com/book/elixir/programming-elixir)

## Beyond the basics

* [Elixir in Action](https://www.manning.com/books/elixir-in-action) (highly recommended)
* [Elixir Sips](http://elixirsips.com/)
* See [Elixir Lang website for more resources](http://elixir-lang.org/learning.html)

## Start with focusing on Elixir's conventional programming concepts:

* pattern matching
* non-scalar data types
* strings

## Learning about Strings

The string implementation in Elixir is more powerful than in other languages, but that comes with more of a learning curve.

* [Elixir for Rubyists: Charlists |> Binary’s |> Strings | IOLists](https://medium.com/@harry_dev/elixir-for-rubyists-charlists-binarys-strings-iolists-eeacf38db999#.epqpak41e)
* [String Theory - ElixirConf 2016](https://www.youtube.com/watch?v=zZxBL-lV9uA)

## Understand data structures

* [When to Use Structs, String-keyed Maps, and Atom-keyed Maps](https://engineering.appcues.com/2016/02/02/too-many-dicts.html)

## Development Resources

* [Hex.pm](https://hex.pm/)
* [Curated list of packages](https://github.com/h4cc/awesome-elixir)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://montrealelixir.gitbook.io/playbook/trails/lang.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
