in reply to TETRA CTYS
Paste the code into a new file and run it.# ### $cur= "\e[H"; my $cls = "\e[1J"; $n =9;print$cls; L1: print $cur; $c = ( $c eq '#') ? '*' : '#' ; for ( $i = 1; $i<9; $i++) { $a=sprintf("% 13s%s \n" , $c x$i, $c x ( $i-1) ); print $a; sleep 1;}goto L1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: TETRA CTYS
by llll (Initiate) on Jan 03, 2008 at 18:14 UTC | |
by olus (Curate) on Jan 03, 2008 at 19:23 UTC | |
by llll (Initiate) on Jan 04, 2008 at 11:12 UTC |