home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp.cse.unsw.edu.au
/
2014.06.ftp.cse.unsw.edu.au.tar
/
ftp.cse.unsw.edu.au
/
pub
/
doc
/
languages
/
perl
/
nutshell
/
ch1
/
countdown
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-10-18
|
265 b
|
9 lines
#!/usr/bin/perl
$countdown = 10;
while ($countdown != 0) { # While $countdown doesn't equal 0
print "$countdown...\n"; # Print time left.
sleep 1; # Wait one second.
--$countdown; # Decrement $countdown.
}
print "BOOM!\n";