assigns the anon sub to a typeglob
that's true.
*{'\''}
nearly. The name of the typeglob is \'\n, that is: Backslash-SingleQuote-Newline (that means you can have sub-names in perl that contain a Newline!)
So, what happens is:
*{'\'
'}=sub{die 'just another perl hacker '};
Assign the anon sub to the typeglob \'\n.
bless&{'\'
'}
bless something. But what? The return value of the soubroutine \'\n.
So the sub gets called. But it dies with the error-message 'just another Perl hacker'. Because the message ends in a newline, the ", at scriptname line blabla"-part is skipped.
As the script dies here, bless is actually never executed.
Resumee:
- you can put newlines (or nearly anything else) in var-names using typeglobs
- you can print without printing using die "message\n"
--
#!/usr/bin/perl
for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/}
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.