And here's a version with Data::Dumper and some config vars that also works
Neither this nor the rendition using Data::Dump works for me on Windows:
C:\_32\pscrpt>type test3.pl
use strict; # https://perlmonks.org/?node_id=11133064
use warnings;
my $template = 'd<';
my $nv = 2.4;
$nv = 4135; # NOTE errors for this number
my $p = pack $template, $nv;
use Data::Dumper;
$Data::Dumper::Terse = $Data::Dumper::Useqq = 1;
my $s = Dumper $p;
print ">$s<\n";
system $^X, '-wle', "use strict; print unpack('H*', $s);";
C:\_32\pscrpt>perl test3.pl
>"\0\0\0\0\0'\260\@"
<
syntax error at -e line 1, at EOF
Execution of -e aborted due to compilation errors.
C:\_32\pscrpt>
I guess it's something to do with Windows command line quoting rules.
Mind you, having it work on Windows specifically is not important.
Now that I have a working example, I can while away some time porting your fix to Windows when I have nothing better to do.
Thanks
tybalt89 !!
Cheers,
Rob
Thanks
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.