浏览代码

iex: add page (#4658)

Michael Schoonmaker 4 年之前
父节点
当前提交
119973ab60
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16 0
      pages/common/iex.md

+ 16 - 0
pages/common/iex.md

@@ -0,0 +1,16 @@
+# 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`