Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl -w use strict; my $x = 0; print "Loading. . "; while ( $x < 8 ){ sleep(2); print ". "; $x++; } print "done!\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: loading. . . . . . . . . done!
by clintp (Curate) on Jul 06, 2001 at 17:50 UTC | |
|
Re: loading. . . . . . . . . done!
by arturo (Vicar) on Jul 06, 2001 at 17:54 UTC |