Elixir Tips

Elixir Tips

  • When doing REPL-driven development, either on iex or on erl, the commands below are the ones I type when the screen is full of past commands and I want to clear the screen and go to the top.
    iex> clear
    erl> io:format("\ec").
    16 upvotes