How to end a statement/ expression in elixir?

Hi, I am trying to end a statement but ailing to do so , I also tried erlang dot.

3 Likes
iex(1)> "hello
...(1)> #iex:break
** (TokenMissingError) iex:1: incomplete expression
    (iex 1.14.0) lib/iex/evaluator.ex:292: IEx.Evaluator.parse_eval_inspect/3
    (iex 1.14.0) lib/iex/evaluator.ex:187: IEx.Evaluator.loop/1
    (iex 1.14.0) lib/iex/evaluator.ex:32: IEx.Evaluator.init/4
    (stdlib 4.0) proc_lib.erl:240: :proc_lib.init_p_do_apply/3
iex(1)>
8 Likes

Thanks for asking.

I always used to exit using ctrl + c to exit and then iex to enter back in!!

Genius, thanks for the solution.

WOw , thanks a lot