This program is fairly simple.  I created a string in the beginning of the
file that contains the characters for the string
"The Perl Journal - oops!  Wait a second."  The string contains four bytes
per character.  The first two bytes are the index in the string in decimal,
and the second two bytes are the character code in hex.  The first 16
characters (The Perl Journal) are the ascii codes for the characters plus 5,
just to mix it up a little.  I also randomized the order of the index so that
it does not go in order, making it a little harder.  The scrambled The Perl
Journal is printed, there is a 0.5 second wait, the " - oops!" is printed,
there is a 0.25 second pause, and the "  Wait a second." is printed.  After
that, there is a blank line and the chopped string printed alternately, to
give the effect that the string is being erased.  After that, I print out
The Perl Journal, and the program is ended.
