소스 검색

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`