79116928

Date: 2024-10-23 07:53:35
Score: 0.5
Natty:
Report link

As @ernix said, we might give Data::Dumper "the old heave-ho" in such situations, using instead,

use JSON::PP;
use utf8;
sub Dumper { JSON::PP->new->pretty->utf8->encode(shift); }
my %hash = ( да => "не" );
die Dumper \%hash;

which gives,

{
   "да" : "не"
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dan Jacobson