Hi Monks...

I came across a piece of code, which was provided to demonstrate a limitation when using the each() function:

#!/usr/bin/perl %couples = ( george => gracie, abbot => costello, johnson => boswell ); foreach $c (each %couples) { print "$c\n"; };

The captioned text accompanying this code reads:

"It's important to rember with each() that it will give you only the next key/value pair from the named hash. The output should contain two lines of text, one for george, one for gracie."

In fact, this code produces for me, on my unix system, the following output:

abbot costello

My first question is whether the information in the text regarding the expected code output is erroneous or is it, perhaps, a cross-platform issue, since this was originally DOS code?

My other question is, what is the minimum code that would, indeed print out the names of all three couples and overcome the supposed limitation of the each() function?

Thanks!


In reply to code that fails to act as expected... by cgmd

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.