in reply to Re^2: Dumping opaque objects
in thread Dumping opaque objects
However, I'm not familiar with Data::Dumper and I've no idea if that's of any use to you.## dumper.pl ## use strict; use warnings; use Data::Dumper; use Math::GMP; my $x = [ Math::GMP->new(101), Math::GMP->new(203), Math::GMP->new(116 +7) ]; print Dumper("@$x"); __END__ C:\_32\pscrpt>perl dumper.pl $VAR1 = '101 203 1167';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Dumping opaque objects
by hv (Prior) on Jan 24, 2022 at 16:04 UTC | |
by syphilis (Archbishop) on Jan 25, 2022 at 10:47 UTC | |
by hv (Prior) on Jan 25, 2022 at 13:58 UTC |