mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 13:42:32 +00:00
22 lines
368 B
Plaintext
22 lines
368 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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`
|