Generally when I want to quit an iex session I use the double control-c dance.
For unknown reasons this refused to work earlier today but I am not getting into that.
Because of it though I tried System.halt/1 to exit the session and that worked.
Is there a difference between the 2 methods?
Else I could add something like this to my .iex.exs
defmodule IexExtra do
def exit, do: System.halt()
end
import IexExtra
Then I can end my sessions with a plain and simple exit






















