Help for this page

Select Code to Download


  1. or download this
    sub mutate { for (shift) { s/./x/g; } }
    
  2. or download this
    sub translate { my $x = shift; $x =~ s/./x/g; return $x; }