문제

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 ?

도움이 되었습니까?

해결책

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

다른 팁

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

    iex> h clear/0
    * def clear()

    Clear the console screen.
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top