Question

In irb and many other interactive shells, I can do a Ctrl+L to clear the screen.

What's the equivalent in Elixir's iex ?

Was it helpful?

Solution

Are you on a Mac? You could try Command+K. That usually works for me.

OTHER TIPS

As José Valim said, you can call clear inside iex.

    iex> h clear/0
    * def clear()

    Clear the console screen.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top