We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have following "test-script.pl":
use Data::Dump "pp"; use JSON "to_json"; my $a = ["12"]; print "ORIG 1: ", to_json($a), "\n"; print "PP: ", pp($a), "\n"; print "ORIG 2: ", to_json($a), "\n";`
When I run it on perl 5.28.1, the original value in parameter is changed:
bash$ /opt/perl-5.28.1/bin/perl test-script.pl ORIG 1: ["12"] PP: [12] ORIG 2: [12]
When I try same code in perl 5.26.3, the original value is not modified:
bash$ /opt/perl-5.26.3/bin/perl test-script.pl ORIG 1: ["12"] PP: [12] ORIG 2: ["12"]
The text was updated successfully, but these errors were encountered:
This may be the result of https://rt.cpan.org/Ticket/Display.html?id=129922
Sorry, something went wrong.
No branches or pull requests
I have following "test-script.pl":
When I run it on perl 5.28.1, the original value in parameter is changed:
When I try same code in perl 5.26.3, the original value is not modified:
The text was updated successfully, but these errors were encountered: