in reply to Re^5: convert to binary number
in thread convert to binary number

I believe that what ikegami is driving at is that perl variables are not simple dwords and thus, while still having a binary representation, you can't simply print the dword. Rather, you always have to translate the underlying structure to any of the possible representations, including binary.

Replies are listed 'Best First'.
Re^7: convert to binary number
by Lotus1 (Vicar) on Jun 10, 2017 at 13:25 UTC

    I think "driving at" is a generous way to phrase it but I see your point. I need to remind myself that Perl is a high level language and is not the same as C. I've been trying to find more detail about how Perl stores variables and I finally found perlguts. Thanks.