So, incorporating abell and cfreak's suggestions, you get:
#!/usr/bin/perl -w
@screen = ( ' 'x70 . "\n" ) x 20;
$gen_line = sub {
my $qw;
for(1..70){
if( !$q[$_] && rand > .993 ){
$q[$_] = q$.$ x 5 . q$ $ x 1
. ${ [ qw$tsuJ rehtona lreP rekcaH$ ] }[$qq++]
. q$ $ x 1 . q$.$ x 5;
$qq = $qq > 3 ? 0: $qq;
}
if( $q[$_] ){
( $qx, $q[$_] ) = split//, $q[$_],2;
$qw .= $qx;
}else{
$qw .= q$ $;
}
}
"\33[0;32m$qw\33[0m";
};
while(1) {
print join '', @screen;
# Drop last line
pop @screen;
# Put a new line on top
unshift @screen, $gen_line->() . "\n";
# Sleep for 0.1 seconds
select(undef, undef, undef, 0.1);
}
Cool, monks! =]
cp
----
"Never be afraid to try something new. Remember, amateurs built the ark. Professionals built the Titanic."
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|