Help for this page

Select Code to Download


  1. or download this
    $a .= ".pl";
    
  2. or download this
    $a = "$a.pl";
    
  3. or download this
    $a =  pack("A*A*",$a,".pl");
    
  4. or download this
    my $x = sub {return shift() . shift()};
    $a = &$x($a,".pl");
    
  5. or download this
    $a=~s#$#.pl#;