Help for this page

Select Code to Download


  1. or download this
    my $stars = "*" x 80;
    s/^-{40}\cM*$/$stars/;
    
  2. or download this
    my $stars = "*" x 80;
    my $dashes = "-" x 40;
    s/^$dashes\cM*$/$stars/;