in reply to Creating a Sparkle in perl

    I'd use something besides cls if I knew how

You can get the equivalent of a cls without going to the shell if you use escape sequences:

use Win32::CONSOLE::ANSI; # (This is only required in Windows) print "\e[H\e[J\n"; # Escape-H "homes" the cursor # Escape-J clears to end-of-screen
A couple of the other escapes I use fairly frequently are:
print "\e[K"; # Clear to end-of-line printf "\e[%d;%dH", $row, $col; # Positions cursor at given row & col +umn

@ARGV=split//,"/:L"; map{print substr crypt($_,ord pop),2,3}qw"PerlyouC READPIPE provides"