white-fox has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; use warnings; my $text="this is a sample"; my @word=split(//, "$text"); for (0 .. $#word){ print "$word[$_]"; sleep 2; } print "\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: problem with delay(my little code)
by Corion (Patriarch) on Mar 24, 2005 at 12:45 UTC | |
|
Re: problem with delay(my little code)
by manav (Scribe) on Mar 24, 2005 at 12:53 UTC | |
|
Re: problem with delay(my little code)
by Random_Walk (Prior) on Mar 24, 2005 at 14:48 UTC | |
|
Re: problem with delay(my little code)
by white-fox (Novice) on Mar 24, 2005 at 12:59 UTC | |
|
Re: problem with delay(my little code)
by ambrus (Abbot) on Mar 24, 2005 at 17:48 UTC |