Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

Update: As Not_a_Number points out below, the behavior described in this post applies not only to 1 (as I originally stated), but to 0 as well. And, after reading merlyn's post, well, it looks like there's a huge number of constants—all those strings beginning with "di", "ds", or "ig"—that perl won't warn about when they are evaluated in a void context. See the code responsible for this behavior, kindly posted by AM.


OK, here's another idle Perl arcana question. A scalar constant in a void context will result in a warning, unless this constant evaluates to a numeric value of 1; e.g.:

% perl -wce 5 Useless use of a constant in void context at -e line 1. -e syntax OK % perl -wce 1 -e syntax OK % perl -wce '5**0' -e syntax OK % perl -wce 1.00 -e syntax OK % perl -wce 'q(1)' Useless use of a constant in void context at -e line 1. -e syntax OK
Does anyone know the rationale for this special dispensation for (numeric) 1? The only one I can think of (and it's a pretty tortured one) is that it silences the warning that would have otherwise been triggered by the usual require-appeasing "1;" when one checks a module's syntax using perl -wc.

the lowliest monk


In reply to Why no warnings for 1 in void context? by tlm

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (6)
As of 2024-04-19 18:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found