]> git.vpit.fr Git - perl/modules/with.git/blobdiff - samples/funcs.pl
Switch qw delimiters to <>
[perl/modules/with.git] / samples / funcs.pl
index 94a414738c3a579ac7bef09c56f3e41a5367b8c4..72a73257a38778b5d4f508bc32af22c424e24628 100755 (executable)
@@ -14,7 +14,7 @@ my %dup;
       grep { eval { () = prototype "CORE::$_"; 1 } }
        grep !$dup{$_}++, @f;
 my $c = 10;
-my $base = "my \@core = qw/";
+my $base = "my \@core = qw<";
 my $out = $base;
 my $l = length $base;
 my $first = 1;
@@ -34,5 +34,5 @@ for (@f) {
   redo;
  }
 }
-$out .= "/;\n";
+$out .= ">;\n";
 print $out;