- or download this
use strict;
use warnings;
...
$h{- f()} = '-()';
$h{ +f()} = '+()';
print "\n",dump(\%h),"\n";
- or download this
->f()->f()->f()->f()->f()
{ "-1" => "-()", "-f" => "- F", "1" => "-()", "1.0" => "+()", "f" => "
+ F" }
- or download this
use strict;
use warnings;
use Data::Dump qw(dump);
...
+f() => '+()',
);
print "\n",dump(\%h),"\n";
- or download this
->f()->f()->f()
{ "-1" => "-()", "-f" => "- F", "1" => "-()", "1.0" => "+()", "f" => "
++ F" }