mirror of https://github.com/CrimsonTome/tldr.git
17 lines
275 B
Markdown
17 lines
275 B
Markdown
|
# iex
|
||
|
|
||
|
> IEx is the interactive shell for Elixir.
|
||
|
> More information: <https://hexdocs.pm/iex>.
|
||
|
|
||
|
- Start an interactive session:
|
||
|
|
||
|
`iex`
|
||
|
|
||
|
- Start a session that remembers history:
|
||
|
|
||
|
`iex --erl "-kernel shell_history enabled"`
|
||
|
|
||
|
- Start and load Mix project files:
|
||
|
|
||
|
`iex -S mix`
|