1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 23:35:25 +02:00
tldr/pages/common/iex.md
2025-05-04 20:03:26 +03:00

16 lines
275 B
Markdown

# iex
> IEx is the interactive shell for Elixir.
> More information: <https://manned.org/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`