require 'curses'
include Curses
init_screen
win2 = Window.new(3,160,12,10)
win2.setpos(1,1)
6.times do |i|
win2.addstr i.to_s
win2.delch
sleep 0.6
win2.refresh
end #=> 0,1,2,3,4,5,6
と
6.times do |i|
win2.addstr i.to_s
win2.addstr '\b'
sleep 0.6
win2.refresh
end #=> 0\n,1\n,2\n,3\n,4\n,5\n,6\n
0、0 が消える、次に 1、1 が消える、2 が消える、2 が消える、6 まで印刷したい