From: Bill Kelly Date: 2004-12-09T16:35:39+09:00 Subject: Re: Duck images From: "trans. (T. Onoma)" > On Wednesday 08 December 2004 08:57 pm, Dave Burt wrote: > | > | 122 > | i=1;loop{puts"\e[2J\e[0;0H#{' '*10}_\n %8s(*)____,\n#{' '*9 > | }(` =~~/\n#{'~^~'[i%2,2]*9}"%(i&1>0?'<':'Quack! >');i+=sleep 1} > > Holy smokes! This has to be the tap out. Look how dense that thing is! Nice > job, Dave! A minor tweak to the ANSI/VT100 codes... the 0;0 is surpufluous... 119 i=1;loop{puts"\e[2J\e[H#{' '*10}_\n %8s(*)____,\n#{' '*9 }(` =~~/\n#{'~^~'[i%2,2]*9}"%(i&1>0?'<':'Quack! >');i+=sleep 1} Regards, Bill