LoginSignup
2
0

More than 5 years have passed since last update.

Elixir のインタラクティブシェル(iex)を終了する

Last updated at Posted at 2016-11-20

iexを終了させるパターン。

  • 「Ctrl + C」を2回入力して終了する。
iex1
iex(1)> 1 + 2
3
iex(2)>
BREAK: (a)bort (c)ontinue (p)roc info (i)nfo (l)oaded
       (v)ersion (k)ill (D)b-tables (d)istribution
host:~ name$
  • 「Ctrl + G」を入力後にqとReturnキーを入力する。
iex2
iex(1)> 1 + 2
3
iex(2)>
User switch command
 --> q
host:~ name$

以上なり。

2
0
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0