1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-17 05:55:32 +02:00
tldr/pages/common/iex.md

17 lines
275 B
Markdown
Raw Normal View History

2020-10-14 08:26:41 -07:00
# iex
> IEx is the interactive shell for Elixir.
2025-05-04 20:03:26 +03:00
> More information: <https://manned.org/iex>.
2020-10-14 08:26:41 -07:00
- 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`