Hi all,

i wanted to write a TMTOWTDI in reply to Merge 2 strings like a zip and wrote this:

use warnings; use strict; use feature qw(say); # use diagnostics; # say zip ('ABCDEFGHIJ','abcde'); my $zipped= zip ('ABCDEFGHIJ','abcde'); say $zipped; sub zip { # join "", sort {qq(\L$a) cmp qq(\L$b)} split "", $_[0].$_[1]; join "", sort { lc $a cmp lc $b} split "", $_[0].$_[1]; } __END__

This works, but with say zip ('ABCDEFGHIJ','abcde'); i get:

monks>zip.pl Unquoted string "zip" may clash with future reserved word at \monks\zi +p.pl line 6. say() on unopened filehandle zip at monks\zip.pl line 6.

And with use diagnostics; i get:

say() on unopened filehandle zip at monks\zip.pl line 6 (#1) (W unopened) An I/O operation was attempted on a filehandle that w +as never initialized. You need to do an open(), a sysopen(), or a so +cket() call, or call a constructor from the FileHandle package.

Edit: Shortened output and fixed minor typos.

What is going on here?

Update: Ouch! I didn't see the space (and perltidy didn't remove it). Thank you very much to all that helped.

Thank you very much for any hint and best regards, Karl

«The Crux of the Biscuit is the Apostrophe»


In reply to Strange Observation [SOLVED] by karlgoethebier

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.