Clear terminal window

You should probably use something like

julia> for i in 1:10
           print("\e[0;0H\e[2J")
           println("test", i)
           sleep(0.1)
       end

for that.

4 Likes