Thanks - my stupid error.
On Sunday 22 January 2006 12:58 am, Xavier Noria wrote:
> Beau E. Cox wrote:
> > I really thought I understood pack/unpack,
> > but this has me stumped. I can't find anything to
> > explain the operation of the following script
> > in the documentation:
> >
> > use
Beau E. Cox wrote:
> I really thought I understood pack/unpack,
> but this has me stumped. I can't find anything to
> explain the operation of the following script
> in the documentation:
>
> use strict;
> use warnings;
>
> my $buffer = pack( "NN", 22, 0 );
> printf "buffer length = %s\n", length
Hi -
I really thought I understood pack/unpack,
but this has me stumped. I can't find anything to
explain the operation of the following script
in the documentation:
use strict;
use warnings;
my $buffer = pack( "NN", 22, 0 );
printf "buffer length = %s\n", length $buffer;
print "buffer ",
j